Break Statement in C
0 4131
The break statement in C language is used inside loops and switch case.
First, take a look at inside a loop usage: When the break statement is encountered inside a loop, the loops are terminated and the control resumes on the next loop.
Secondly, In case of switch case control structure, the control comes out of the switch case.
Result: value of a variable number is: 0 value of a variable number is: 1 value of a variable number is: 2
The Syntax of break statement in C program:
break;Example:
#include <stdio.h>
int main()
{
int num =0;
while(num<=100)
{
printf("value of a variable number is: %d\n", num);
if (num==2)
{
break;
}
num++;
}
printf("Out of while loop");
return 0;
}
Result: value of a variable number is: 0 value of a variable number is: 1 value of a variable number is: 2
Share:




Comments
Waiting for your comments