Computer Science, asked by warishansari492, 2 months ago

Write comparison between break and continue statements in c ?

Answers

Answered by Anonymous
0

  • break

A break causes the innermost enclosing loop or switch to be exited immediately.

  • continue

A continue inside a loop nested within a switch causes the next loop iteration.

Similar questions