Vidyalelo
C Programming · Q17

C Fundamentals

Programming · C Programming · question 17

Q17

What is the purpose of the 'continue' statement in a loop?

A.
Skip the loop
B.
Exit the program
C.
Skip the current iteration
Answer
D.
Exit the loop

Answer: Option C

Solution

Answer: Option C
Solution:
The purpose of the 'continue' statement in a loop is to skip the current iteration and proceed to the next iteration of the loop. When 'continue' is encountered within a loop, it immediately terminates the current iteration and continues with the next iteration, effectively skipping any remaining code within the current iteration's body.

So, the correct answer is:
Option C: Skip the current iteration