Including Initial Parent Process Many Processes Created Program Include Include Int Main I Q43881819
Including the initial parent process, how many processes arecreated by this program?
#include <stdio.h>
#include <unistd.h>
int main()
{
int i;
for (i = 0; i < 6; i++)
fork();
return 0;
}
answers
1
64
None of these
2
16
64
5
Expert Answer
Answer to Including the initial parent process, how many processes are created by this program? #include #include int main() { int…
OR