Write a C program to find maximum between three numbers.

Static

Output 

Dyamic

Output 

// Write a C program to find maximum between three numbers.
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
printf(“Enter the First number :- “);
scanf(“%d”,&a);
printf(“Enter the Second number :- “);
scanf(“%d”,&b);
printf(“Enter the third number :- “);
scanf(“%d”,&c);
if (a>b && a>c)
{
printf(“A is big %d”,a);
}
else if(b>c)
{
printf(“B is Big %d”,b);
}
else
{
printf(“C is Big %d”,c);
}
getch();
}