Blog
Break Statement in C – tccicomputercoaching.com
- March 9, 2020
- Posted by: Riddhi Dhandha
- Category: Break Statement
The break statement is used to exit from inside loops or switch statement.
The break statement is used to terminate the loop. As soon as the break statement is encountered from within a loop, the loop iterations stops there and control returns from the loop immediately to the first statement after the loop.
Example of Break Statement:
If we want to stop iteration from 6th number then apply condition with break statement.
for(i=1;i<=10;i++)
{ if(i==6)
{
break;
}
printf(“hello world\n”);
}
i/op
=====================================================
1 he…..
2 he…
3 he;;;
4 he;;;
5 he;;;
To learn more in detail about C Language at TCCI.
Call us @ 9825618292
Visit us @ http://www.tccicomputercoaching.com
Leave a Reply Cancel reply
[vc_row full_width=”” parallax=”” parallax_image=””][vc_column width=”1/1″][vc_widget_sidebar sidebar_id=”default”][/vc_column][/vc_row]