单选题 请分析以下程序。
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
【答案解析】