Computer Science, asked by thamizhselvi744, 3 months ago

write a program to illustrate the difference between break and continue statement​

Answers

Answered by arshita13006
0

Answer:

Break statement resumes the control of the program to the end of loop and made executional flow outside that loop. 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.

Similar questions