SOURCE CODE:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
main ()
{
int a,b,c;
printf("\n Enter two Numbers: ");
scanf("%d%d",&a,&b);
c=a ? b:a ;
printf("\n Greater number of the two is : %d \n",c);
}
OUTPUT:
Enter two Numbers: 5 357
Greater number of the two is : 357