fork download
  1. #include <pthread.h>
  2. #include <stdio.h>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. fork(fork());
  7.  
  8. printf("hello");
  9. }
Success #stdin #stdout 0.01s 5256KB
stdin
Standard input is empty
stdout
hello