fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main() {
  5.  
  6. std::string s("Hell");
  7. s.append(1,'o');
  8.  
  9. std::cout << s << std::endl;
  10. return 0;
  11. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
Hello