c program to find largest of 2 numbers

#include<stdio.h>
#include<conio.h>
int main()
{
clrscr();
int a, b;
printf(“Enter first number : “);
scanf(“%d”,&a);
printf(“Enter second number\n”);
scanf(“%d”,&b);
if(a>b)
printf(” %d is biggest out of the 2 numbers \n”,a);
else
printf(” %d is biggest out of the 2 numbers \n”,b);
getch();       
return 0;
}




c program to find largest of 2 numbers