Computer Science, asked by putuborna94, 2 months ago

it skip the statements of current loop and moves to next loop​

Answers

Answered by ezhilharish196
0

Answer:

The continue statement skips the current iteration of a loop and goes to the next one. Because of this, the continue statement must appear in the body of a loop or you will get an error. Similar to the break statement, the continue statement has two forms: labeled and unlabeled.

Similar questions