...创建两个子进程。观察在程序运行过程中的进程状态变化,分析原因...
发布网友
发布时间:2024-10-24 11:20
我来回答
共1个回答
热心网友
时间:2024-11-19 00:17
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
int p1,p2;
if(p1=fork())
{
printf("I am child 1。\n");
fork();
}
else
{
if(p2=fork()) printf("I am child 2。\n");
else printf("I am parent。\n");
}
return 0;
}