cpp get maximum of variable number of ints code example
Example 1: c++ get maximum value unsigned int
// C
#include <limits.h>
unsigned int max_unsigned_int_size = UINT_MAX;
// C++
#include <limits>
unsigned int max_unsigned_int_size = std::numeric_limits<unsigned int>::max();
Example 2: c++ how to get maximum value
x = 1, y = 2;
fmax(x , y);
//if you want to print it right away:
cout << fmax(x , y);
//if you want to store it:
int j = fmax(x, y);
cout << j;
//output 2