fork download
  1. #include <iostream>
  2. #include <unistd.h>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. cout << "Hello" << endl;
  8.  
  9. int pid = fork();
  10.  
  11. cout << pid << endl;
  12. cout << "Bye" << endl;
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Hello
643423
Bye
0
Bye