The process executes the code where x is an integer and x is initialized to 11
while(--x){
fork();
if(x == 2)
break;
}
The total number of child processes created is1
255
2
256
3
511
4
1023
The process executes the code where x is an integer and x is initialized to 11
while(--x){
fork();
if(x == 2)
break;
}
The total number of child processes created is