编写一C语言程序,实现在程序运行时通过系统调用fork( )创建两个子进程

1.编写一C语言程序,实现在程序运行时通过系统调用fork()创建两个子进程,使父、子三进程并发执行,父亲进程执行时屏幕显示“Iamfather”,儿子进程执行时屏幕显示... 1.编写一C语言程序,实现在程序运行时通过系统调用fork( )创建两个子进程,使父、子三进程并发执行,父亲进程执行时屏幕显示“I am father”,儿子进程执行时屏幕显示“I am son”,女儿进程执行时屏幕显示“I am daughter”。 展开
 我来答
a530963
推荐于2016-02-21 · TA获得超过114个赞
知道答主
回答量:95
采纳率:0%
帮助的人:57.5万
展开全部
#include <stdio.h>
int main()
{
int pid;
/*这里创建了一个子进程1*/
pid=fork();
if(pid==0)
printf("I am son,my pid is %d.\n",getpid());

else if(pid>0)
{

/*从子进程1返回到父进程时,再创建子进程2。*/
printf("I'm father ,my pid is %d.\n",getpid());
pid=fork();
if(pid==0)
printf("I'm daughter process,my pid is %d.\n",getpid());
else if(pid>0)
printf("I'm father process,my pid is %d.\n",getpid());
else
printf("fork() error.\n");
}
else printf("fork() error.\n");
}
却妮本小雯
2019-08-24 · TA获得超过3865个赞
知道小有建树答主
回答量:3068
采纳率:31%
帮助的人:181万
展开全部
#include
<stdio.h>
int
main()
{
int
pid;
/*这里创建了一个子进程1*/
pid=fork();
if(pid==0)
printf("I
am
son,my
pid
is
%d.\n",getpid());
else
if(pid>0)
{
/*从子进程1返回到父进程时,再创建子进程2。*/
printf("I'm
father
,my
pid
is
%d.\n",getpid());
pid=fork();
if(pid==0)
printf("I'm
daughter
process,my
pid
is
%d.\n",getpid());
else
if(pid>0)
printf("I'm
father
process,my
pid
is
%d.\n",getpid());
else
printf("fork()
error.\n");
}
else
printf("fork()
error.\n");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式