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?
| |||
|
show 7 more comments
feedback
|
|
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. | |||||
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 | |||
|
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 | |||
|
feedback
|
longis 32 bit, nor thatintis 32 bit, nor thatlong longis 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:25long longcan't be "reserved", since the C99 standard guarantees its existence. On a 16-bit system with a 16-bitint, 32-bitlongand 64-bitlong longthey'd all be different, but those days are gone as far as desktop machines are concerned. We're not going to stick with 16-bitintjust so that we don't feel there's a redundant type in the middle somewhere. – Steve Jessop Sep 2 '11 at 8:52