Break Statement in C
×

Break Statement in C

3021

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.


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




Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments