fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. string s = "Hello, ";
  8. s += 'A';
  9.  
  10. cout << s;
  11. }
Success #stdin #stdout 0s 5404KB
stdin
Standard input is empty
stdout
Hello, A