📜  fork 在 c 中是如何工作的 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:19.549000             🧑  作者: Mango

代码示例1
Fork system call is used for creating a new process, which is called child process,
which runs concurrently with the process that makes the fork() call (parent process).
After a new child process is created, both processes will execute the next instruction
following the fork() system call.