C Programming: Creating a child process using “clone”
clone() function is used to create a child process from calling process. Calling process will be the parent process of the child process. clone() function is used to run a particular function in a separate thread other than the calling process. Unlike fork() function where rest of the code after fork() function call will execute […]