Including the initial parent process, how many processes arecreated by these pro
ID: 3616512 • Letter: I
Question
Including the initial parent process, how many processes arecreated by these program? #include <stdio.h>#include <unistd.h>
int main()
{
//fork a child process
fork();
//fork another child process
fork();
//and fork another
fork();
return 0;
}
how many process are created? Including the initial parent process, how many processes arecreated by these program? #include <stdio.h>
#include <unistd.h>
int main()
{
//fork a child process
fork();
//fork another child process
fork();
//and fork another
fork();
return 0;
}
how many process are created?