Showing posts with label WAP to find if number=10 then Good else Bad. Show all posts
Showing posts with label WAP to find if number=10 then Good else Bad. Show all posts

GOOD ELSE BAD

WAP to find if number=10 then Good else Bad

void main ()

{

int a;

clrscr ();

printf ("Enter any Number: ");

scanf ("%d",&a);

if (a==10)

goto g;

else

goto b;

g:

printf ("Good");

goto end;

b:

printf ("Bad");

goto end;

end:

getch ();

}


Labels