Multiple choice

Which of the folllowing commands is used in C language to skip statements below it and reset the control to start from beginning in a loop?

  1. return

  2. goto

  3. continue

  4. break

  5. jump

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

continue is the correct command used to skip rest of the statements below it and continue the loop from beginning, if condition is met.