编写一C语言程序,实现在程序运行时通过系统调用fork( )创建两个子进程
1.编写一C语言程序,实现在程序运行时通过系统调用fork()创建两个子进程,使父、子三进程并发执行,父亲进程执行时屏幕显示“Iamfather”,儿子进程执行时屏幕显示...
1.编写一C语言程序,实现在程序运行时通过系统调用fork( )创建两个子进程,使父、子三进程并发执行,父亲进程执行时屏幕显示“I am father”,儿子进程执行时屏幕显示“I am son”,女儿进程执行时屏幕显示“I am daughter”。
展开
2个回答
展开全部
#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");
}
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");
}
展开全部
#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");
}
<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");
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |