closed by
491 views
1 votes
1 votes
closed as a duplicate of: GATE CSE 2005 | Question: 72
closed by

Related questions

1 votes
1 votes
0 answers
2
Nandkishor Nangre asked Mar 22, 2018
893 views
#include <stdio.h>#include <unistd.h>int main(){fork();fork() && fork() || fork();fork();printf("forked\n");return 0;} //How this works specially the level 2 fork() // wi...