fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. if (fork() || fork() && fork())
  8. printf("GM\n");
  9. else
  10. printf("GE\n");
  11.  
  12. return 0;
  13.  
  14. }
  15.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
GM
GM
GE
GE