up vote 4 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

Thanks everyone, I've never played with 64 bit data before and I'm freaking lazy tonight. – Polaris878 Oct 6 '09 at 4:04
Note that in a C99 environment, you should use int64_t in <stdint.h> for a portable 64-bit integer. If you're not in a C99 environment, long long is your best bet, but it's not actually guaranteed to be 64 bits wide. – Stephen Canon Oct 6 '09 at 4:12
ST: Well, it is guaranteed to be at least 64-bits wide, so he shouldn't worry that somewhere out there it's < 64. Not in a conforming implementation, anyway. – DigitalRoss Oct 6 '09 at 4:52
feedback

7 Answers

up vote 18 down vote accepted

Yes GCC does support long long int, which is a part of C99 standard.

The standard does not mandate its size in bits, but required values of LLONG_MIN and LLONG_MAX in <limits.h> imply it's at least 64-bit (exact 64-bit wide integer types are int64_t/uint64_t from <stdint.h>).

  1. LLONG_MIN must be at most -9223372036854775807
  2. LLONG_MAX must be at least 9223372036854775807
link|improve this answer
Just to add.. In windows its equivalent would be _int64 – Aviator Oct 6 '09 at 5:07
4  
Actually, to be strict, it is the equivalent of int64_t from <stdint.h> (which is C99 too). – Alex B Oct 6 '09 at 5:10
I never know this header! Thanks! – Aviator Oct 6 '09 at 6:18
feedback

long long int is a part of the C99 standard, and I know GCC supports it. And now I can prove it.

link|improve this answer
feedback

On my 32-bit machine,

int main()
{
    printf("%d\n", sizeof(long long int));
    return 0;
}

compiled with gcc prints 8 (8 bytes * 8 bits/byte = 64 bits).

link|improve this answer
14  
size_t format strings should use "%zu" not "%d" (likewise, ssize_t must use "%zd"). This is a problem on 64-bit platforms, where size_t is often a 64-bit type, while int can still be 32-bit. – bdonlan Oct 6 '09 at 4:05
feedback

Yes, long long is part of C99, as well as long long constants (10222333444555LL) and a few support elements. (LLONG_MAX, llrint(d), llround(d), some others.) And gcc has implemented it for some time now.

link|improve this answer
feedback

In order to print long long int variables:

long long int lli = 100000000;

printf("%lld\n", lli);
link|improve this answer
feedback

I believe that usually an unsigned long long is the traditional representation of a 64-bit integer. I'm assuming long long int would work too, but I've never personally seen any 64-bit vars declared that way before.

link|improve this answer
1  
long long int is just a signed 64-bit (or more) integer. Nothing particularly unusual about it. – bdonlan Oct 6 '09 at 4:04
feedback

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

link|improve this answer
"this should have been 128 bit on 64-bit platforms": care to support this affirmation in any way? – F'x Oct 8 '09 at 10:22
I did say, "as I understand it". I can support the idea only in that, as wikipedia says, "The term word is used for a small group of bits which are handled simultaneously by processors of a particular architecture. The size of a word is thus CPU-specific." So logically, a long long word would be longer on an wider arch. However, from the same wikipedia page, the de facto standard does seem to be that long long is 64-bit. en.wikipedia.org/wiki/Integer_%28computer_science%29 – Lee B Oct 8 '09 at 11:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.