Explain fork() system call. Ans. The 'fork()' used to create a new process from an existing process. The new process is called the child process, and the existing process is called the parent. We can tell which is which by checking the return value from 'fork()'. The parent gets the child's pid returned to him, but the child gets 0 returned to him. - Study24x7
Social learning Network
03 Mar 2023 12:10 PM study24x7 study24x7

Explain fork() system call. Ans. The 'fork()' used to create a new process from an existing process. The new process is called the child process, and the existing process is called the parent. We can tell which is which by checking the return value from 'fork()'. The parent gets...

See more

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles