Need Of Continue Statement In C - Log2Base2

🚀 From Python to placements — 90+ courses & 200+ exams, free on Leyaa.ai →

continue statement

Continue statement is used in looping to skip some statements.

It is used inside loop along with the decision-making statements.

When continue statement encounters, the execution will go to the starting of the loop.

The statements below continue statement will not be executed, if the given condition becomes true.

Example

Print number continuously from 1 to 100 except 25,50 and 75.

In this program, we should print numbers from 1 to 100 using for loop but when the number is equals to 25 or 50 or 75, we should give continue statement.

Program

Example

#include<stdio.h> int main() { int i; for(i=1;i<=100;i++) { if(i == 25 || i == 50 || i == 75) continue; printf("%d\n",i); } return 0; } Run it

If we run the above program, it will print numbers from 1 to 100 except the numbers 25,50 and 75.

Pictorial Explanation

continue statement in c Page -- Page ++

🚀 One platform. 90+ coding courses. 200+ exams.

From programming fundamentals to competitive exam prep — learn with intelligence, not just content. Free on Leyaa.

Explore Leyaa.ai Free →

Tag » What Does Continue Do In C