#include<stdio.h>
#include<conio.h>
int main()
{
int a,b;
printf("enter the value of a");
scanf("%d",&a);
printf("enter the value of b");
scanf("%d",&b);
if(a>b)
printf("a is max");
else
printf("b is max");
}
#include<conio.h>
int main()
{
int a,b;
printf("enter the value of a");
scanf("%d",&a);
printf("enter the value of b");
scanf("%d",&b);
if(a>b)
printf("a is max");
else
printf("b is max");
}
No comments:
Post a Comment