请分析以下程序。 int main() { pid_t pid; pid = fork(); if(

计算机考试 已帮助: 时间:2024-08-23 19:28:03

请分析以下程序。 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 is 3744 I am the parent process, my process ID is 3987
B.I am the child process, my process ID is 3744
C.I am the parent process, my process ID is 3987
D.不输出任何信息
请帮忙给出正确答案和分析,谢谢!

难度:⭐⭐⭐

题库:计算机类考试,计算机四级,嵌入式系统开发工

标签:正确答案,请帮忙,程序

相似问题