Computer Science, asked by ankitamahanta100, 7 months ago

An early exit from a loop can be accomplished by using the ______ statement​

Answers

Answered by vickybais
4

The continue statement is used inside loops. When a continue statement is encountered inside a loop, control jumps to the beginning of the loop for next iteration, skipping the execution of statements inside the body of loop for the current iteration.

Similar questions