Question - Describe fork() system call?
Answer -
The command used to create a new process from an existing process is called fork(). The main process is called the parent process and the new process id is called the child process. The child process id is returned to the parent process and the child gets 0. The returned values are used to check the process and the code executed.