fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4.  
  5. int main ()
  6. {
  7. int i, r;
  8. i = 5;
  9. printf("%d\n", i);
  10. r = fork();
  11. if (r > 0) {
  12. i = 6;
  13. }
  14. else if (r == 0) {
  15. i = 4;
  16. }
  17. printf("%d\n", i);
  18. }
  19.  
Runtime error #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
5
6
5
4