Saturday, 26 September 2015

Program to find biggest number between two input numbers

/* 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