I have a uint8 vector (in a IEEE 32 float number), with the size of 4, and I want to convert to a float64, What is the best way to do this in C++/C?
I am doing float a=*(float *) my_pointer, however my compiler is using a float64, which creates a wrong conversion.
Thanks