How to find the Maximum of Two Numbers in C - Step by Step Examples
How to find the Maximum of Two Numbers in C ?
Answer
To find the maximum of two numbers in C, you can use a simple comparison operation.
✐ Examples
1 Maximum of Two Numbers
In this example,
- We declare two variables
a
andb
and assign values to them. - We use an
if
statement to check which number is greater betweena
andb
. - We print the maximum value.
C Program
// Maximum of Two Numbers
#include <stdio.h>
int main() {
int a = 10;
int b = 15;
int max;
if (a > b) {
max = a;
} else {
max = b;
}
printf("Maximum of %d and %d is: %d\n", a, b, max);
return 0;
}
Output
Maximum of 10 and 15 is: 15
Summary
In this tutorial, we learned How to find the Maximum of Two Numbers in C language with well detailed examples.