Find Greatest Number Program in C

Advertisements

Prev Tutorial Next Tutorial

Find Greatest Number Among three Number Program in C

Find largest number using if-else

Find Largest Number Program in C

#include<stdio.h>
#include<conio.h>

void main()
 {
 int a,b,c;
 clrscr();
 printf("Enter any three number: ");
 scanf("%d%d%d",&a,&b,&c);
 
 if(a >= b && a >= c)
 printf("%d is largest",a);
 else if(b >= a && b >= c)
 printf("%d is largest",b);
 else if(c >= a && c >= b)
 printf("%d is largest",c);
 getch();
}

Output

Enter any three numbers:
5
10
4
10 is largest

Find greatest number from three numbers using ternary operator

Ternary operator

If any operator is used on three operands or variable is known as ternary operator. It can be represented with " ?: "

Ternary Operator

In the above symbol exp1 is condition and exp2 and exp3 will be either value or variable or statement or any mathematical expression. If condition will be true exp2 will be execute otherwise exp3 will be executed.

Find Largest Number Program in C

#include<stdio.h>
#include<conio.h>

void main()
 {
 int a,b,c,largest;
 clrscr();
 printf("Enter any three numbers: ");
 scanf("%d%d%d",&a,&b,&c);
 largest=(a>b)?(a>c?a:c):(b>c?b:c);
 printf("Largest number:  %d",largest);
 getch();
}

Output

Enter any three numbers:
5
10
4
Largest number: 10

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements