fork(1) download
  1. #include <string>
  2. #include <iostream>
  3.  
  4. int main()
  5. {
  6. char c = 34;
  7. std::string s(1,c);
  8. std::cout << s << std::endl;
  9. }
Success #stdin #stdout 0s 3028KB
stdin
Standard input is empty
stdout
"