Page 1 of 1

Q2. Including the initial parent process, how many processes are created by the program shown below? Draw a tree showing

Posted: Mon Apr 25, 2022 7:47 am
by answerhappygod
Q2 Including The Initial Parent Process How Many Processes Are Created By The Program Shown Below Draw A Tree Showing 1
Q2 Including The Initial Parent Process How Many Processes Are Created By The Program Shown Below Draw A Tree Showing 1 (23.71 KiB) Viewed 23 times
Q2. Including the initial parent process, how many processes are created by the program shown below? Draw a tree showing the different processes. #include <stdio.h> #include <unistd.h> int main() { /* fork a child process */ fork(); /* fork another child process */ fork(); /* and fork another */ fork(); return 0; }