How can I know what is the maximum assignable value for a variable from the the type of "unsigned long int"?
The maximum value of "unsigned long int" in c++
13.6k Views Asked by user2517676 At
3
How can I know what is the maximum assignable value for a variable from the the type of "unsigned long int"?
The obvious way would be to use
std::numeric_limits<unsigned long>::max();