fork download
  1. #include <iostream>
  2.  
  3. #include <unistd.h>
  4.  
  5. int main() {
  6.  
  7. fork();
  8.  
  9. std::cout << "Hello World!\n";
  10.  
  11. return 0;
  12.  
  13. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Hello World!
Hello World!