Write a program to find the largest among three numbers

Source Code

#include<stdio.h>
#include<conio.h>
int main (int argc, char *argv[])
{
  clrscr();
  int a,b,c,l;
  printf("\n Enter three numbers:");
  scanf("%d %d %d",&a,&b,&c);
  if(a>b)
  {
    if(a>c)
      l=a;
  }
  else if(b>c)
    l=b;
  else
    l=c;
  printf("\n The largest of %d , %d and %d is %d",a,b,c,l);
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code