0
what is the maximum value of integer that can be storded in a 64 bit machine/system??
4 ответов
+ 1
(2^64) - 1
That's assuming it's a 64 bit int.
If it's a standard 32 bit int the number would be (2^32) - 1
+ 1
long -9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807
unsigned long 0 ~ 18,446,744,073,709,551,615
+ 1
That is the range. You can't easily deal with numbers higher than that without using some hacks
0
but this is theoretical range ryt???... actually would the system have this range ???