February 23, 2025

Telugu Tech Tuts

TimeComputers.in

C Basics in Telugu Continue Statement Part 25

C Basics in Telugu

The continue statement in C programming language works somewhat like the break statement. Instead of forcing termination, however, continue 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. For the while and do…while loops, continue statement causes the program control passes to the conditional tests.