I need help.
I have, for example, a hexadecimal number 0x41140000 that is 9.25 by the IEEE 754 standard, but how to read this value (contained in an integer variable) giving cast to a float and pick up the correct value, ie 9.25. / p>
What is happening is that after doing the assignment float = 0x41140000 I get 1091829760.00 instead of the desired value, which even makes sense, but it's not what I want.
Does anyone know a method to do this? Thanks in advance for your cooperation!