C - break and continue

 Break and Continue:

Break Vs Continue

breakcontinue

break can appear in both switch and loop (forwhiledo) statements.

continue can appear only in loop (forwhiledo) statements.

break causes the switch or loop statements to terminate the moment it is executed. Loop or switch ends abruptly when break is encountered.

continue doesn't terminate the loop, it causes the loop to go to the next iteration. All iterations of the loop are executed even if continue is encountered. The continue statement is used to skip statements in the loop that appear after the continue.

The break statement can be used in both switch and loop statements.

The continue statement can appear only in loops. You will get an error if this appears in switch statement.

When a break statement is encountered, it terminates the block and gets the control out of the switch or loop.

When a continue statement is encountered, it gets the control to the next iteration of the loop.

break causes the innermost enclosing loop or switch to be exited immediately.

continue inside a loop nested within a switch causes the next loop iteration.


Break statement(break):  

Sometimes it becomes necessary to come out of the loop even before loop condition becomes false then break statement is used. Break statement is used inside loop and switch statements. It cause immediate exit from that loop in which it appears and it is generally written with condition. It is written with the keyword as break. When break statement is encountered loop is terminated and control is transferred to the statement, immediately after loop or situation where we want to jump out of the loop instantly without waiting to get back to conditional state. 

When break is encountered inside any loop, control automatically passes to the first statement after the loop. This break statement is usually associated with if statement. 

Example : 

void main() 

int j=0; 

for(j=0;j<6;j++) 

if(j==4) 

break; 

Output: 0 1 2 3

Continue statement (key word continue): 

Continue statement is used for continuing next iteration of loop after skipping some statement of loop. When it encountered control automatically passes through the beginning of the loop. It is usually associated with the if statement. It is useful when we want to continue the program without executing any part of the program. 
The difference between break and continue is, when the break encountered loop is terminated and it transfer to the next statement and when continue is encounter control come back to the beginning position. 
In while and do while loop after continue statement control transfer to the test condition and then loop continue where as in, for loop after continue control transferred to the updating expression and condition is tested. 
Example:- 
void main() 
int n; 
for(n=2; n<=9; n++) 
if(n==4) 
continue; 
printf(“%d”, n); 
 }
 }
 Printf(“out of loop”); 
Output: 2 3 5 6 7 8 9 out of loop

Comments

Post a Comment

Popular posts from this blog

C - character set, identifiers, keywords

C - Constants and Variables

C - Loops