Showing posts with label
WAP TO PRINT SERIES FROM 1 TO 10 AND BREAK ON 5.
Show all posts
Showing posts with label
WAP TO PRINT SERIES FROM 1 TO 10 AND BREAK ON 5.
Show all posts
WAP TO PRINT SERIES FROM 1 TO 10 AND BREAK ON 5void main ()
{
int a;
clrscr ();
for (a=1;a<=10;a++)
{
if (a==5)
break;
printf ("%d\n",a);
}
getch ();
}
