I know how to display values in scientific notation (printf("%e",a); or cout << scientific << a), but how do you it the other way around?
If you receive a value that you know is in scientific notation, how can you transform it into... normal notation?
I'm looking for a single command, if such a thing exists. I know a way of doing it by taking it as a string and mutilating it with substrings and pow()'s, but I would much prefer to avoid that if at all possible.