The process executes the code where i is an integer:
for(i = 0; i <=9; i++)
{
if(i/3 == 0)
continue;
fork();
}
The total number of child processes created is1
8
2
7
3
63
4
127
The process executes the code where i is an integer:
for(i = 0; i <=9; i++)
{
if(i/3 == 0)
continue;
fork();
}
The total number of child processes created is