InterviewSolution
Saved Bookmarks
| 1. |
Why We Are Using The Fork Command And How It Works? |
|
Answer» In LINUX fork() system call is used to create a child process. The Child process inherits some properties of its parent and OPERATES in a SEPARATE memory space. In linux fork() system call is used to create a child process. The Child process inherits some properties of its parent and operates in a separate memory space. |
|