#include<stdio.h>
#include<conio.h>
int main()
{
int a,b;
clrscr();
printf("enter any two no.s");
scanf("%d%d",&a,&b);
if(a>b)
printf("the greater no. is %d",a);
if(b>a)
printf("the greater no. is %d",b);
if(a==b)
printf("the entered no.s are equal");
getch();
return 0;
}
0 comments:
Post a Comment