fork() : Create new process, Clone current process // system call ->Have exactly the same stack (sequence of function calls) ->Have same virtual memory ( so pointer and other data is preserved) ->No argument ->Return process Id of the child process -> After creation of the process both parent and child process starts execution from next the instruction fork() > 0 //Successful fork() < 0 // Error..