c program to find the largest of 3 numbers

#include<stdio.h>
#include<conio.h>
int main()
{
int a, b, c;       
  clrscr();
printf(“Enter three numbers : “);
scanf(“%d%d%d”,&a,&b,&c);
if(a>b &&a>c)
 printf(“%d is the biggest\n”, a);
if(b>a &&b>c) 
printf(“%d is the biggest\n”, b);
if(c>b &&c>a)
 printf(“%d is the biggest\n”, c); 
getch(); 
return 0 ;
}


c program to find the largest of 3 numbers