On 14.09.2006, at 22:13, Stephen Deasey wrote:
Oh, OK. So on an AMD64 box, pointers are 64bit, but int's are 32? You need long int to get 64bit?
Yes. Normally (what is normal today?) on a 64 bit box/compiler: int = 32 ptr = 64 long long = 64 long = 64 (this I'm not sure) short = 16
