This C++ program prints minimum of two values using min algorithm. The function takes two objects as the parameters by const reference and the third parameter is optional which is a predicate. The predicate can be used for objects which can not be compared like primitive datatypes and hence can be compared on the basis of some key.
Here is the source code of the C++ program which prints minimum of two values using min algorithm. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.
/*
* C++ Program to print minimum of two values using min() algorithm
*/
#include <iostream>
#include <algorithm>
int main()
{
int a, b;
std::cout << "Enter a = ";
std::cin >> a;
std::cout << "\nEnter b = ";
std::cin >> b;
std::cout << "\nMinimum of a and b is "
<< std::min(a, b) << std::endl;
}
$ a.out Enter a = 10 Enter b = 20 Minimum of a and b is 10 $ a.out Enter a = -40 Enter b = 20 Minimum of a and b is -40
Sanfoundry Global Education & Learning Series – 1000 C++ Programs.
advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.
Related Posts:
- Apply for Computer Science Internship
- Practice Computer Science MCQs
- Practice Programming MCQs
- Apply for C++ Internship
- Check C++ Books