How to find the Maximum of Three Numbers in C - Step by Step Examples
How to find the Maximum of Three Numbers in C ?
Answer
To find the maximum of three numbers in C, you can use a simple comparison with if statements.
✐ Examples
1 Find Maximum of Three Numbers
In this example,
- We declare three variables
a
,b
, andc
with the numbers to compare. - We use a series of if statements to compare the numbers and update the maximum accordingly.
C Program
#include <stdio.h>
int main() {
int a = 5;
int b = 8;
int c = 3;
int max = a;
if (b > max) {
max = b;
}
if (c > max) {
max = c;
}
printf("Maximum of three numbers is: %d\n", max);
return 0;
}
Output
Maximum of three numbers is: 8
Summary
In this tutorial, we learned How to find the Maximum of Three Numbers in C language with well detailed examples.