The maximum value of "unsigned long int" in c++

13.6k Views Asked by At

How can I know what is the maximum assignable value for a variable from the the type of "unsigned long int"?

3

There are 3 best solutions below

2
On BEST ANSWER

The obvious way would be to use std::numeric_limits<unsigned long>::max();

13
On

Another way to find out would be:

unsigned long int i = (unsigned long int) -1;
printf("%lu\n", i);
0
On

In simple way:

unsigned long int i = -1;
std::cout << i;