max value c++ code example
Example 1: int max in c++
2147483647
unsigned long long int = 18 446 744 073 709 551 615
Example 2: max c++
#include <iostream>
#include <algorithm>
int main () {
std::cout << "max(1,2)==" << std::max(1,2) << '\n';
std::cout << "max(2,1)==" << std::max(2,1) << '\n';
std::cout << "max('a','z')==" << std::max('a','z') << '\n';
std::cout << "max(3.14,2.73)==" << std::max(3.14,2.73) << '\n';
return 0;
}
Example 3: c++ how to get maximum value
x = 1, y = 2;
fmax(x , y);
cout << fmax(x , y);
int j = fmax(x, y);
cout << j;