Tag: How to use Break Statement in C

Break Statement in C language

Break Statement in C language: (1) The break statement enables a program to skip over part of the code. A break statement terminates the smallest enclosing while, do-while, for or switch statement. Execution resumes at the statement immediately following the body of the terminated statement. (2) Sample C language code and its output, as shown: #include …