I need to store a double as a string. I know I can use printf if I wanted to display it, but I just want to store it in a string variable so that I can store it in a map later (as the value, not the key).
I need to store a double as a string. I know I can use
Share
The boost ™ way:
The Standard C++ way:
Note: Don’t forget
#include <sstream>