Greetings! I was experimenting with C language till I encountered something very strange. I was not able to explain myself the result shown below.
The Code:
#include <stdio.h>
int main(void)
{
int num = 4294967295U;
printf("%u\n", num);
return 0;
}
The Question:
1.) As you see, I created an int which can hold numbers between -2147483648 to 2147483647.
2.) When I assign the value 4294967295 to this variable, the IDE shows me a warning message during compilation because the variable overflowed.
3.) Due to curiosity I added a U (unsigned) behind the number and when I recompiled it, the compiler did not return any warning message.
4.) I did further experiments by changing the U (unsigned) to L (long) and LL (long long). As expected, the warning message still persist for these two but not after I change it to UL (unsigned Long) and ULL (unsigned long long).
5.) Why is this happening?
The Warning Message :(For steps 2)
warning #2073: Overflow in converting constant expression from 'long long int' to 'int'.
The Warning Message:(For steps 4 LL & L)
warning #2073: Overflow in converting constant expression from 'long long int' to 'long int'.
And last, thanks for reading my question, your teachings and advices are much appreciated.
intis only guaranteed to hold values from -32767 to 32767. Your platform very likely offers widerints, but this is unspecified behavior that you cannot rely on. – Thom Smith Mar 22 '11 at 18:37long long inttolong int. Thelong long intis apparently the type you gave your constant by using a suffixLL. But where doeslong intcome from? I don't see anylong ints in your code. Are you sure thatnumwas declared asintand not aslong intat the time you got that warning message? – AndreyT Mar 22 '11 at 18:56