Fork in Operating System
fork() → System call that creates a child process identical to the parent.
Parent and child run independently and simultaneously.
Each process has its own stack and heap.
Return Value of Fork:
\> 0 (Positive): Parent process (stores child’s PID...