fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. char str[] = "Hello world!";
  8. cout << str << endl;
  9. str[1] = 'f';
  10. cout << str;
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4404KB
stdin
Standard input is empty
stdout
Hello world!
Hfllo world!