I'm using ReadProcessMemory in order to get 4 bytes. The function allows me to represent this as an unsigned int. I wish to represent this as a float; or in other words use the byte representation of this uint for my float. I've tried casting and it does not seem to work.
Example: byte representation: 94 4E 2D 43
uint: 1127042708
float: 173.3069458..
Any help would be appreciated.