home
Learn
screen_rotation
#include <stdio.h> #include <conio.h> void main(){ int i; clrscr(); printf("\n We are using continue keyword."); for(i=1;i<=10;i++){ if(i==5){ continue; } else{ printf("\n %d",i); } } getch(); }
Program Output
We are using continue keyword. 1 2 3 4 6 7 8 9 10