I know the difference between long and int But What is the difference between "long long" and "long int"
|
feedback
|
|
There are several shorthands for built-in types.
On many systems,
And a consequence of this is that on an exotic system, | |||||||
feedback
|
|
According to the
Each can be represented as to support a wider range. On common 32 bit systems | |||
|
feedback
|
|
| |||||||||
feedback
|
|
An See the integer Wikipedia article for a more detailed table. | |||||||||
feedback
|
|
On 64 bit systems it doesn't make any difference in their sizes. On 32 bit systems long long is guaranteed store values of 64 bit range. Just to avoid all these confusions, it is always better to use the standard integral types: | ||||
|
feedback
|
|
The only guarantee you have in standard C++ is that | |||
|
feedback
|
|
The C standard doesn't make any specific width requirements for integral types other than minimal ranges of values that the type needs to be able to represent, and that the widths are non-decreasing: | |||
|
feedback
|
|
I think: "long" doubles the number of bits allocated to the data type. So long (32 bits?) becomes 64 bits. Int (16 bits?) becomes 32 bits. | |||
|
feedback
|
long intsyntax versuslong. – André Caron Aug 11 '11 at 14:03