fork download
  1. #include <string>
  2. #include <sstream>
  3. #include <iostream>
  4.  
  5. int main()
  6. {
  7. const std::string s = static_cast<std::ostringstream&>(
  8. std::ostringstream() << 0 << "hi"
  9. ).str();
  10. std::cout << s;
  11. }
  12.  
Success #stdin #stdout 0.01s 2860KB
stdin
Standard input is empty
stdout
0hi