- 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 22 times
Q2. Including the initial parent process, how many processes are created by the program shown below? Draw a tree showing
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Q2. Including the initial parent process, how many processes are created by the program shown below? Draw a tree showing
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; }