Computer Science, asked by sangamsingh55216, 3 months ago

What is the difference between a break statement and a continue statement when they occur in a loop ?

Answers

Answered by dollysachdeva49177
2

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.

hope it help u

plz Mark this answer in brainlist olz

Answered by kchaudhari0410
0

Explanation:

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