#include
#include
void main()
{
int a,b,c;
clrscr();
printf("Enter three numbers : ");
scanf("%d%d%d",&a,&b,&c);
(a>b)?(a>c)?printf("\n%d is greater",a):printf("\n%d is greater",c):(b>c)?printf("\n%d is greater",b):printf("\n%d is greater",c);
getch();
}
0 Comments