Write a c program to check the highest number among two integer number

check the highest number among two integer number

#include<stdio.h>
#include<conio.h>
main()
{
int a,b;
printf("enter two number");
scanf("%d%d",&a,&b);
if(a>b)
{
printf("a is big");
}
else
{
printf("b is big");
}
getch();
}

Post a Comment

0 Comments