Science, asked by saruthiselvam29, 4 months ago

the continue statement cannot be used with​

Answers

Answered by shantanulendesnl
0

Explanation:

the continue statement connot be used with

Answered by jenisha145
0

The continue statement is not used with the switch statement

Explanation:

  • The continue statement isn't used with the switch statement, but it can be used in a while, do-while, or for loop.
  • The break statement ends the loop prematurely. The continue statement signals the start of the following iteration. It halts the loop's execution.
  • The continue statement can only be used within loops, and it jumps straight to the next loop iteration, skipping the statements that follow in the loop body for the current iteration.
Similar questions