English, asked by zva, 10 months ago


Why we use
continue
statement in
c programming ?

Answers

Answered by Anonymous
3

The continue statement in C programming works somewhat like the break statement. Instead of forcing termination, it forces the next iteration of the loop to take place, skipping any code in between. For the for loop, continue statement causes the conditional test and increment portions of the loop to execute.

Similar questions