I am trying to print out the floating point values 0x40a00000 and 0xc0200000. But the values that I print out and the correct values according to the IEEE-754 Floating Point Converter (https://www.h-schmidt.net/FloatConverter/IEEE754.html) are completely different:
The values I should get according to the IEEE converter:
0x3F800000 = 5.00
0xBF000000 = -2.50
The values I get when running:
float tmp1 = 0x40a00000;
float tmp2 = 0xc0200000;
printf("tmp1 = %.2f\n", tmp1);
printf("tmp2 = %.2f\n", tmp2);
is
tmp1 = 1084227584.00
tmp2 = 3223322624.00
For some reason my C code isn't formatting the bits of the floating point values according to IEEE standards and is instead formatting them as if it were an int with a decimal point
float tmp3 = 0x10;
is equal tofloat tmp3 = 16;
which initializes the variabletmp3
with the value16.0f
. To "convert" an integer bitwise representation of a floating point number you need to do type punning using either byte buffers, pointers, or unions. – Some programmer dudeuint32_t mval = 0x40a00000; float tmp1 = *((float*)(&mval));
- I'm not up on the C specs, this may be ub. – Shawn