> cout << sizeof(int64_t) << endl; > cout << sizeof(long long) << endl; > > print: > > 8 > 8 8*8 = 64 sizeof reports the # of bytes, not bits. wes
> cout << sizeof(int64_t) << endl; > cout << sizeof(long long) << endl; > > print: > > 8 > 8 8*8 = 64 sizeof reports the # of bytes, not bits. wes