lst-0884-book.cpp
// https://godbolt.org/z/cbGbcT178
#include <sstream> // ostringstream
#include <iostream>
int main() {
std::ostringstream ostr;
double dval = 3.1415;
int ival = 4321;
ostr << dval << " : " << ival;
const std::string sval = ostr.str();
std::cout << sval << std::endl; // Ausgabe: 3.1415 : 4321
}