Computer Science, asked by Anonymous, 4 months ago

Differences between Break and Continue.​


Anonymous: Break statement resumes the control of the program to the end of loop and made executional flow outside that loop.
Anonymous: Continue statement resumes the control of the program to the next iteration of that loop enclosing 'continue' and made executional flow inside the loop again.
Anonymous: Thanks
Anonymous: wlc
madhanvarsini: Break statement mainly used to terminate the enclosing loop such as while, do-while, for or switch statement wherever break is declared. Continue statement mainly skip the rest of loop wherever continue is declared and execute the next iteration
madhanvarsini: ok its help for u
Anonymous: Tq

Answers

Answered by Anonymous
21

Explanation:

Break statement mainly used to terminate the enclosing loop such as while, do-while, for or switch statement wherever break is declared. Continue statement mainly skip the rest of loop wherever continue is declared and execute the next iteration.


Anonymous: Where is "continue"?
Answered by Anonymous
14

Answer:

Break statement mainly used to terminate the enclosing loop such as while, do-while, for or switch statement wherever break is declared.

Continue statement mainly skip the rest of loop wherever continue is declared and execute the next iteration.

Explanation:

Please Mark as Brainiest ❤️❤️❤️


Anonymous: Where is "continue"?
Anonymous: Now see answer
Similar questions