Create Process Using fork()

Reading Time: 2 minutes Points To Catch When we fork in any process it simply creates a copy of the same process which we call child process Fork returns 0 in the child process & PID of the child process in the parent process, which […]