fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. void myFunction(std::string str) {
  6. str[2] = 'j';
  7. cout << str << "\n";
  8. }
  9.  
  10. int main() {
  11. myFunction("abcdef");
  12. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
abjdef