The ________ statement is used to skip the rest of the loop's body and continue with the next iteration.

  • break
  • continue
  • exit
  • return
In C and many other programming languages, the 'continue' statement is used to skip the current iteration and move to the next iteration within a loop. It allows you to bypass the remaining code in the loop body.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *