Computer Science for IGCSE & O level - Programming (Section 1 - No. 7)
What does the `continue` statement do within a loop?
Exits the loop entirely.
Skips the rest of the current iteration and goes to the next iteration.
Declares a new variable.
Defines the loop condition.
Explanation
The `continue` statement skips to the next iteration of the loop.
Comments (0)
