Write a C program Larger between two numbers.
#include<stdio.h>
#include<conio.h>
void main();
{
int a,b;
clrscr();
printf("Enter two numbers: ");
scanf("%d%d",&a,&b);
if(a>b)
printf("A is Larger");
if(b>a)
printf("B is Larger");
else
printf("A=%d and b=%d are equal",a,b);
getch();
}


0 Comments