请分析以下程序。 int main() {pid_t pid; pid=fork; if(pid==0) printf("I am the child process,my process ID is%d\n",getpid()); else printf

admin2022-06-20  34

问题 请分析以下程序。
int main()
{pid_t pid;
pid=fork;
if(pid==0)
printf("I am the child process,my process ID is%d\n",getpid());
else
printf("I am the parent process,my process ID is%d\n",getpid());
}
该程序正确运行后的结果是(          )。

选项 A、I am the child process,my process ID is3744
I am the parent process,my process ID is3987
B、I am the child process,my process ID is3744
C、1 am the parent process,my process ID is3987
D、不输出任何信息

答案A

解析 计算机程序设计中的fork()函数返回值:若成功调用一次则返回两个值,子进程返回0,父进程返回子进程标记;否则,出错返回-1。假设程序正确运行并创建子进程成功,那么,子进程为0,父进程为进程号,所以输出I am the child process,my process ID is3744 I am the parent process,my process ID is3987。
转载请注明原文地址:https://kaotiyun.com/show/6TyZ777K
0

相关试题推荐
最新回复(0)