Question: Including the initial parent process, how many processes are created by this program? #include #include int main() { int i; for (i = 0; i
Including the initial parent process, how many processes are created by this program?
#include
#include
int main()
{
int i;
for (i = 0; i < 6; i++)
fork();
return 0;
}
answers
| 1 | ||
| 64 | ||
| None of these | ||
| 2 | ||
| 16 | ||
| 64 | ||
| 5 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
