Computer Science, asked by thulasi195v, 3 months ago

write the program to illustrate the difference between break and continue statements?
plzz help!urgent​

Answers

Answered by keshav2150
3

The major difference between break and continue statements in C language is that a break causes the innermost enclosing loop or switch to be exited immediately. Whereas, the continue statement causes the next iteration of the enclosing for , while , or do loop to begin.

Similar questions