Computer Science, asked by riyabiswas5227, 11 months ago

Which system call will you use to get the parent of the process?

Answers

Answered by Anonymous
1

In Operating System, the fork() system call is used by a process to create another process. The process that used the fork() system call is the parent process and process consequently created is known as the child process.

Answered by Anonymous
1

fork() in C. Fork system call is used for creating a new process, which is called child process, which runs concurrently with the process that makes the fork() call (parent process).

Similar questions