Monday 23 February 2015

Continue Keyword in C


#include<stdio.h>
#include<conio.h>
main()
{
int i=0,Br;
clrscr();
for(i=0;i<100;i++)
{
if(i<60)
continue;
printf("\n%d.. SSI Education",i);
}

getch();
}

No comments:

Post a Comment