Computer Science, asked by rakshitraoi4518, 1 year ago

Differentiate between break and continue statement with an example.

Answers

Answered by ratna345
5
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 interation of the enclosing for loop to begin.
Similar questions