Title basically says it all... does GCC support:
long long int
which would be a 64 bit integer?
Also, is long long int part of the standard? Thanks
|
1
|
|
|
|
Yes GCC does support The standard does not mandate its size in bits, but required values of
|
|||
|
|
|
||
|
|
|
|
On my 32-bit machine,
compiled with |
||||
|
|
|
Yes, |
||
|
|
|
|
In order to print long long int variables:
|
||
|
|
|
|
I believe that usually an |
||||
|
|
|
long longs are well supported, and have been for a long long time [sorry]. As I understand it, this should have been 128 bit on 64-bit platforms, but for compatibility/portability reasons in GCC, has standardised on a 64-bit width. See also: (u)int128_t, and this discussion on GCC's 128-bit integer support |
||||
|
int64_tin<stdint.h>for a portable 64-bit integer. If you're not in a C99 environment,long longis your best bet, but it's not actually guaranteed to be 64 bits wide. – Stephen Canon Oct 6 at 4:12