View Single Post
  #5  
Old September 24th, 2003, 09:18 AM
Jack Simth's Avatar

Jack Simth Jack Simth is offline
Major General
 
Join Date: Oct 2002
Posts: 2,174
Thanks: 0
Thanked 0 Times in 0 Posts
Jack Simth is on a distinguished road
Default Re: about planet storage

Quote:
Originally posted by Taera:
whats 2^32? i mean, where the number comes from?
It is the number of values a 32 bit integer (the type most computers use) can take on; for an unsigned integer, the minimum value is 0, the maximum value is (2^32) - 1 = 4294967295; for a signed integer, the minimum value is -2147483648 (-(2^31)), and the maximum value is 2147483647 ((2^31) - 1).
__________________
Of course, by the time I finish this post, it will already be obsolete. C'est la vie.
Reply With Quote