Multiple choice

Which of the following is the looping structure in C++?

  1. If-else statement

  2. Switch statement

  3. While statement

  4. None of these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

This is the looping structure in C++ which excecutes its body until the condition specified in the while statement becomes false.