Find the biggest of three numbers in C Language

Find the biggest of three numbers in C Language

Find the biggest of three numbers in C Language

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter 3 Nos :");
scanf("%d%d%d",&a,&b,&c);
if(a>b && a>c)
{
printf("%d is Bigger",a);
}
if(b>a && b>c)
{
printf("%d is Bigger",b);
}
if(c>a && c>b)
{
printf("%d is Bigger",c);
}
getch();
}