KodeGod.com

020. Write a program to accept two numbers from user and compare them in C language

#include<stdio.h>
#include<conio.h>  
main()
{
 int a,b;
 clrscr();
 printf("Enter numbers...");
 scanf("%d%d",&a,&b);
 if(a>b)
	printf("a is greater than b");
 else if(b>a)
	printf("b is greater than a");
 else
	printf("both are equal");
 getch();
}