int64_t == long long

Wesley Smith wesley.hoke@gmail.com
Tue Jul 1 20:19:00 GMT 2008


>  cout << sizeof(int64_t) << endl;
>  cout << sizeof(long long) << endl;
>
> print:
>
> 8
> 8


8*8 = 64

sizeof reports the # of bytes, not bits.
wes



More information about the Gcc-help mailing list