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.
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
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:
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
No comments:
Post a Comment