2
i need help.
I have, for example, a hexadecimal number 0x41140000 which is 9.25 by the IEEE 754 standard, but how to read this value (contained in an integer variable) by casting a float and picking the correct value, that is, 9.25.
What’s happening is that after doing the float assignment = 0x41140000 I get 1091829760.00 instead of the desired value, which makes sense, but it’s not what I want.
Does anyone know a way to do that? I thank you for your cooperation!
Related (Soen): How to Convert an IEEE 754 single-Precision Binary floating-point to decimal?
– Woss