Just out of curiosity, why do C compilers specify long to be 32-bit (same as int) and long long to be 64-bit. Wouldn't it have made more sense to make long 64-bit and reserve long long until 128-bit numbers become a reality?

link|improve this question

Two things: firstly, long long ain't necessarily 64 bits. Second, isn't suggesting it be 128 bits wide similarly narrow-minded - we should be preparing for 1024 bit hardware to become commonplace, right? – Mac Sep 2 '11 at 5:24
1  
Actually "C compilers" do not specify that long is 32 bit, nor that int is 32 bit, nor that long long is 64 bit. This all depends very much on the compiler... So your question is based on a false premise. – Nemo Sep 2 '11 at 5:25
Wouldn't it make more sense to give standard types fixed sizes (int32 int64 etc.) from the very beginning, and save us from whole class of portability issues. Like it was done in C# for example. – hamstergene Sep 2 '11 at 5:27
2  
They finally did in C99: en.wikipedia.org/wiki/Stdint.h – Mysticial Sep 2 '11 at 5:31
1  
@seljuq70: long long can't be "reserved", since the C99 standard guarantees its existence. On a 16-bit system with a 16-bit int, 32-bit long and 64-bit long long they'd all be different, but those days are gone as far as desktop machines are concerned. We're not going to stick with 16-bit int just so that we don't feel there's a redundant type in the middle somewhere. – Steve Jessop Sep 2 '11 at 8:52
show 7 more comments
feedback

3 Answers

up vote 2 down vote accepted

Yes, it does make sense, but Microsoft had their own reasons for defining "long" as 32-bits.

As far as I know, of all the mainstream systems right now, Windows is the only OS where "long" is 32-bits. On Unix and Linux, it's 64-bit.

All compilers for Windows will compile "long" to 32-bits on Windows to maintain compatibility with Microsoft.

For this reason, I avoid using "int" and "long". Occasionally I'll use "int" for error codes and booleans (in C), but I never use them for any code that is dependent on the size of the type.

link|improve this answer
Your right, I just now realized this. – sj755 Sep 2 '11 at 5:45
I use long in cases where 32 bits is big enough, and I don't want int32_least_t or my own typedef all over my code. It's probably best to make the dependency obvious and explicit, and if it's in a struct you'd probably use int32_t to avoid bloating it where long is bigger, but there does come a point of "can't be bothered with this". – Steve Jessop Sep 2 '11 at 8:58
feedback

The c standard have NOT specified the bit-length of primitive data type, but only the least bit-length of them. So compilers can have options on the bit-length of primitive data types. On deciding the bit-length of each primitive data type, the compiler designer should consider the several factors, including the computer architecture.

here is some references: http://en.wikipedia.org/wiki/C_syntax#Primitive_data_types

link|improve this answer
feedback

For historical reasons. For a long time (pun intended), "int" meant 16-bit; hence "long" as 32-bit. Of course, times changed. Hence "long long" :)

PS:

GCC (and others) currently support 128 bit integers as "(u)int128_t".

PPS:

Here's a discussion of why the folks at GCC made the decisions they did:

http://www.x86-64.org/pipermail/discuss/2005-August/006412.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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