fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. auto conv = [](auto&s){s="c"+s.substr(0,s.size()-2);};
  7. string str = "stdio.h";
  8. conv(str);
  9. cout << str;
  10. }
  11.  
Success #stdin #stdout 0s 3228KB
stdin
Standard input is empty
stdout
cstdio