fork download
  1. #include <string>
  2. #include <iostream>
  3.  
  4. int main()
  5. {
  6. std::string test = std::to_string(123);
  7. std::cout << test;
  8. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
123