Important C Programs

C Program to Find the Largest Number Among Three Numbers

//C Program to Find the Largest Number Among Three Numbers
//Header Files
#include<stdio.h>
#include<conio.h>

void main()
{

int n1, n2, n3;
clrscr();
printf("Enter three different numbers: ");
scanf("%d %d %d", &n1, &n2, &n3);
if( n1>=n2 && n1>=n3 )
{

printf("%d is the largest number.", n1);

}
else if( n2>=n1 && n2>=n3 )
{

printf("%d is the largest number.", n2);

}
else
{

printf("%d is the largest number.", n3);

}
getch();

}

Output


You can also see a video how to run this program