Thursday, May 3, 2012

WAP TO FIND OUT BIGGER NUMBER (IF-ELSE)


/*****<soeasyprograms.blogspot.in>*****/
#include<stdio.h>
void main ()


{


int a,b;


clrscr ();


printf ("Enter the value of A: ");


scanf("%d",&a);


printf ("Enter the value of B: ");


scanf ("%d",&b);


if (a>b)


{


printf ("A is Greater");


}


else


{


printf("B is Greater");


}


getch ();


}


Output of this Program is:
Dont forget to give comments









No comments:

Post a Comment