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();
}
#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();
}
0 Comments