Help for this page

Select Code to Download


  1. or download this
    if (fork() == 0) {
        # code executed by child process
    }
    else {
        # code executed by parent process
    }