Hi!
I would like to know what's the way to convert a double to its char[8] (even better string) representation, and vice versa (Char[8] to double)
i.e EXAMPLES -> 1.3e-15 (made up that number)
In VS debugger you can cast double variables with ",s" to get their representation as string which is useful..
Note: I am not after "1.32" -> 1.32
Many Thanks