Looking through related Q&A's, it seems that best C++ practice for conversion to string is
ostringstream stringStream;
stringStream << input_value; // let's say, input_value is a double
output_string = stringStream.str();
Is there any way to achieve the same in less than three lines of clean C++?