fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. #include<stdio.h>
  4. #include<cstdlib>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. string ain;
  10. getline(cin,ain,'p');
  11. cout << ain+" is your name?";
  12. system("pause");
  13. return 0;
  14. }
Success #stdin #stdout #stderr 0.01s 5292KB
stdin
Sikren
stdout
Sikren is your name?
stderr
sh: 1: pause: not found