stringstream stream number to string

Solutions on MaxInterview for stringstream stream number to string by the best coders in the world

showing results for - "stringstream stream number to string"
Félix
05 Feb 2019
1#include <sstream>
2
3std::string number_to_string(int num) {
4    std::stringstream stream; 
5    stream << num;
6    return stream.str();
7}