How to find the Minimum of Two Numbers in C


How to find the Minimum of Two Numbers in C ?

Answer

To find the minimum of two numbers in C, you can use a simple comparison statement.



✐ Examples

1 Minimum of Two Numbers

In this example,

  1. We declare two variables a and b and assign values to them.
  2. We use an if-else statement to compare a and b to find the minimum.
  3. We print the minimum value.

C Program

// Minimum of Two Numbers
#include <stdio.h>

int main() {
	int a = 10;
	int b = 15;

	int min = (a < b) ? a : b;

	printf("Minimum of %d and %d is: %d", a, b, min);
	return 0;
}

Output

Minimum of 10 and 15 is: 10

Summary

In this tutorial, we learned How to find the Minimum of Two Numbers in C language with well detailed examples.




More C Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in C ?
  2. How to find the Minimum of Two Numbers in C ?
  3. How to find the Maximum of Three Numbers in C ?
  4. How to find the Minimum of Three Numbers in C ?