elibraryportal Logo

Break Statement in C++

The break statement control the statement which is used to terminate the loop and program control resumes at the next statement following the loop..

Example:-

Output:

0
1
2
3

Next TopicContinue and GOTO