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

SERIES BREAK ON 5

WAP to print series from 1 to 10 and break on 5

void main ()

{

int a;

clrscr ();

for (a=1;a<=10;a++)

{

if (a==5)

break;

printf ("%d\n",a);

}

getch ();

}


Labels