Computer Science, asked by lawrencemattu7, 6 months ago

what is the use of break and continue In c program

Answers

Answered by pjgaikar06
0

Answer:

The break statement is primarily used as the exit statement, which helps in escaping from the current block or loop. Conversely, the continue statement helps in jumping from the current loop iteration to the next loop.

Similar questions