/*
Program to find biggest number between two input numbers*/
#include<conio.h>
#include<stdio.h>
void
main()
{
int a,b,big;
printf("Enter any two numbers");
scanf("%d%d",&a,&b);
if(a>b)
big=a;
else
big=b;
printf("Biggest no=%d",big);
getch();
}
No comments:
Post a Comment