maximum value of int in c++ code example
Example 1: maximum int c++
#include <limits>
int imin = std::numeric_limits<int>::min();
int imax = std::numeric_limits<int>::max();
Example 2: int max in c++
2147483647
unsigned long long int = 18 446 744 073 709 551 615
Example 3: c++ get maximum value unsigned int
#include <limits.h>
unsigned int max_unsigned_int_size = UINT_MAX;
#include <limits>
unsigned int max_unsigned_int_size = std::numeric_limits<unsigned int>::max();
Example 4: c++ how to get maximum value
x = 1, y = 2;
fmax(x , y);
cout << fmax(x , y);
int j = fmax(x, y);
cout << j;