Why do I get such a big int?
int ans = 1 << 45;
printf("Check: %d", ans);
return 0;
Check: 1858443624
|
This is undefined behavior in C. Anything can happen, including stuff like processor exceptions, or unpredictable changes in other parts of the program (which can happen as a side effect of aggressive compiler optimizations).
|
|||||||
|
|
According to the C standard
is undefined behavior, so the compiler is free to do anything for the code you give here. |
|||
|
|
|
90? No way. You need to read what bit-shifting does. Quick example:
|
|||||||||||
|
|
clang (as used in X-Code; AFAIK they don't use gcc anymore) is funny with this:
Apparently, they randomize the result :-) |
|||
|
|
1) As everybody has already said, the answer is "undefined behavior". 2) In practice, just about every compiler I'm familiar with will give you "0". 3) In practice, most self-respecting compilers will also give you a warning:
|
|||||
|
45 << 1– Geoff Reedy Aug 31 '12 at 20:08