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();

其他提示

Another way to find out would be:

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

In simple way:

unsigned long int i = -1;
std::cout << i;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top