What's the output of the following program and why?
#include <stdio.h>
int main()
{
float a = 12.5;
printf("%d\n", a);
printf("%d\n", *(int *)&a);
return 0;
}
My compiler prints 0 and 1095237632. Why?
|
What's the output of the following program and why?
My compiler prints 0 and 1095237632. Why? |
||||
|
In both cases you pass a bits representing floating-point values, and print them as decimal. The second case is the simple case, here the output is the same as the underlying representation of the floating-point number. (This assumes that the calling convention specified that the value of a However, in the first case, when you pass a Just to make it absolutely clear, the code in the question is not valid C, as it's illegal to pass values to |
|||||||
|
|
The memory referred to by Why do you get a different value when you don't do the casting? I'm not 100% sure, but I'd guess it's because compilers can use a calling convention which passes floating point arguments in a different location than integers, so when printf tries to find the first integer argument after the string, there's nothing predictable there. |
|||||||
|
|
This is because floating point representation (see IEEE 754 standard). In short, set of bits, which makes 12.5 floating point value in IEEE 755 representation when interpreted as an integer will give you strange value which has not much in common with 12.5 value. WRT to |
|||||||||||||
|
*(int *)&abreaks strict aliasing rules, so if anything does not happen because of the rest of the program, anything may happen because of that. – Pascal Cuoq Sep 26 '11 at 0:03