CPP break statement is used to break the execution of current loop in between the loop or to prevent the code to check the next switch case. Break statement breaks the continuity of the containing loop only, i.e, external loops will not get affected because of Break statement in inner loop.
Syntax:
loop/conditions statements
{
statements;
break;
}
Example 1: Use of Break Statement in Switch Case
#include <iostream.h> using namespace std; int main() { char ch; cout << "Enter an alphabet: "; cin >> ch; switch (ch) { case 'a': cout << "Vowel"; break; case 'e': cout << "Vowel"; break; case 'i': cout << "Vowel"; break; case 'o': cout << "Vowel"; break; case 'u': cout << "Vowel"; break; default: cout << "Consonant"; } return 0; } |
Output
Enter an alphabet: a
Vowel |
Example 2: Use of Break Statement in For Loop
#include <iostream.h> using namespace std; int main() { int i; for (i = 1; i <= 10; i++) { cout << i << "\t"; if (i == 5) break; } return 0; } |
Output
1 2 3 4 5 |