Image

C Language - Control Statements - Continue

continue

It is a keyword of C language it is used to continue currently executing looping statement . It is only used within looping statement. It is also called as jump statement .
Syntax:-    continue
EX: WAP for continue
#include<stdio.h>
#include<conio.h>
void main()
{
 int i;
 clrscr();
 for(i=1;i<=10;i++)
 {
 if(i==5)
 continue;
 printf("\n %d",i);
 }
 getch();
}
o/p
1
2
3
4
6
7
8
9
10