(-2147483648> 0) returns true in C++?

C++TypesLiteralsInteger Overflow

C++ Problem Overview


-2147483648 is the smallest integer for integer type with 32 bits, but it seems that it will overflow in the if(...) sentence:

if (-2147483648 > 0)
    std::cout << "true";
else
    std::cout << "false";

This will print true in my testing. However, if we cast -2147483648 to integer, the result will be different:

if (int(-2147483648) > 0)
    std::cout << "true";
else
    std::cout << "false";

This will print false.

I'm confused. Can anyone give an explanation on this?


Update 02-05-2012:

Thanks for your comments, in my compiler, the size of int is 4 bytes. I'm using VC for some simple testing. I've changed the description in my question.

That's a lot of very good replys in this post, AndreyT gave a very detailed explanation on how the compiler will behave on such input, and how this minimum integer was implemented. qPCR4vir on the other hand gave some related "curiosities" and how integers are represented. So impressive!

C++ Solutions


Solution 1 - C++

-2147483648 is not a "number". C++ language does not support negative literal values.

-2147483648 is actually an expression: a positive literal value 2147483648 with unary - operator in front of it. Value 2147483648 is apparently too large for the positive side of int range on your platform. If type long int had greater range on your platform, the compiler would have to automatically assume that 2147483648 has long int type. (In C++11 the compiler would also have to consider long long int type.) This would make the compiler to evaluate -2147483648 in the domain of larger type and the result would be negative, as one would expect.

However, apparently in your case the range of long int is the same as range of int, and in general there's no integer type with greater range than int on your platform. This formally means that positive constant 2147483648 overflows all available signed integer types, which in turn means that the behavior of your program is undefined. (It is a bit strange that the language specification opts for undefined behavior in such cases, instead of requiring a diagnostic message, but that's the way it is.)

In practice, taking into account that the behavior is undefined, 2147483648 might get interpreted as some implementation-dependent negative value which happens to turn positive after having unary - applied to it. Alternatively, some implementations might decide to attempt using unsigned types to represent the value (for example, in C89/90 compilers were required to use unsigned long int, but not in C99 or C++). Implementations are allowed to do anything, since the behavior is undefined anyway.

As a side note, this is the reason why constants like INT_MIN are typically defined as

#define INT_MIN (-2147483647 - 1)

instead of the seemingly more straightforward

#define INT_MIN -2147483648

The latter would not work as intended.

Solution 2 - C++

The compiler (VC2012) promote to the "minimum" integers that can hold the values. In the first case, signed int (and long int) cannot (before the sign is applied), but unsigned int can: 2147483648 has unsigned int ???? type. In the second you force int from the unsigned.

const bool i= (-2147483648 > 0) ;  //   --> true

> warning C4146: unary minus operator applied to unsigned type, result still unsigned

Here are related "curiosities":

const bool b= (-2147483647	    > 0) ; //  false
const bool i= (-2147483648		> 0) ; //  true : result still unsigned
const bool c= ( INT_MIN-1		> 0) ; //  true :'-' int constant overflow
const bool f= ( 2147483647		> 0) ; //  true
const bool g= ( 2147483648		> 0) ; //  true
const bool d= ( INT_MAX+1		> 0) ; //  false:'+' int constant overflow
const bool j= ( int(-2147483648)> 0) ; //  false : 
const bool h= ( int(2147483648) > 0) ; //  false
const bool m= (-2147483648L		> 0) ; //  true 
const bool o= (-2147483648LL	> 0) ; //  false

C++11 standard:

> 2.14.2 Integer literals [lex.icon]

> An integer literal is a sequence of digits that has no period or > exponent part. An integer literal may have a prefix that specifies its > base and a suffix that specifies its type.

> The type of an integer literal is the first of the corresponding list > in which its value can be represented. >

enter image description here

> If an integer literal cannot be represented by any type in its list > and an extended integer type (3.9.1) can represent its value, it may > have that extended integer type. If all of the types in the list for > the literal are signed, the extended integer type shall be signed. If > all of the types in the list for the literal are unsigned, the > extended integer type shall be unsigned. If the list contains both > signed and unsigned types, the extended integer type may be signed or > unsigned. A program is ill-formed if one of its translation units > contains an integer literal that cannot be represented by any of the > allowed types.

And these are the promotions rules for integers in the standard. > 4.5 Integral promotions [conv.prom] > > > A prvalue of an integer type other than bool, char16_t, char32_t, or > wchar_t whose integer conversion rank (4.13) is less than the rank of > int can be converted to a prvalue of type int if int can represent all > the values of the source type; otherwise, the source prvalue can be > converted to a prvalue of type unsigned int.

Solution 3 - C++

In Short, 2147483648 overflows to -2147483648, and (-(-2147483648) > 0) is true.

This is how 2147483648 looks like in binary.

In addition, in the case of signed binary calculations, the most significant bit ("MSB") is the sign bit. This question may help explain why.

Solution 4 - C++

Because -2147483648 is actually 2147483648 with negation (-) applied to it, the number isn't what you'd expect. It is actually the equivalent of this pseudocode: operator -(2147483648)

Now, assuming your compiler has sizeof(int) equal to 4 and CHAR_BIT is defined as 8, that would make 2147483648 overflow the maximum signed value of an integer (2147483647). So what is the maximum plus one? Lets work that out with a 4 bit, 2s compliment integer.

Wait! 8 overflows the integer! What do we do? Use its unsigned representation of 1000 and interpret the bits as a signed integer. This representation leaves us with -8 being applied the 2s complement negation resulting in 8, which, as we all know, is greater than 0.

This is why <limits.h> (and <climits>) commonly define INT_MIN as ((-2147483647) - 1) - so that the maximum signed integer (0x7FFFFFFF) is negated (0x80000001), then decremented (0x80000000).

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbenylView Question on Stackoverflow
Solution 1 - C++AnTView Answer on Stackoverflow
Solution 2 - C++qPCR4virView Answer on Stackoverflow
Solution 3 - C++drzymalaView Answer on Stackoverflow
Solution 4 - C++Cole TobinView Answer on Stackoverflow