目录: 标题| 题干| 答案| 搜索| 相关
问题

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


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

  • AI am the child process, my process ID is 3744 I am the parent process, my process ID is 3987
  • BI am the child process, my process ID is 3744
  • CI am the parent process, my process ID is 3987
  • D不输出任何信息
参考答案
参考解析:
分类:其他
相关推荐

1、以下程序 int aa[3][3]={{2},{4},{6}}; main(

以下程序 int aa[3][3]={{2},{4},{6}}; main() { int i,*p=&aa[0][0]; for(i=0;i<2;i++){ if(i==0)aa[i][i+1]=*p+1; else ++p; printf("%d",*p); } } 的输出是______。A23B26C33D36

2、有以下程序 main() { int a=666,b=888; Printf

有以下程序 main() { int a=666,b=888; Printf("%d ",a,b) ; } 程序运行后的输出结果是A错误信息B666C888D666,888

3、有以下程序: main() { int i=10,j=1; printf("

有以下程序: main() { int i=10,j=1; printf("%d,%d ",i--,++j); } 执行后的输出结果是 ______。A9,2Bl0,2C9,1D10,1

4、有以下程序 main() { int m[][3]={1,4,7,2,5,

有以下程序main(){int m[][3]={1,4,7,2,5,8,3,6,9};int i,j,k=2;for(i=0;i<3;i++){printf("%d",m[k][i]);}}执行后输出结果是()A456B258C369D789

5、有以下程序:include <stdio.h> main( ) { int

有以下程序:include <stdio.h> main( ) { int a=7,b=8,* p,*q, *r; p=&a;q=&b; r=p; p=q;q=r; printf(" % d,% d,% d,% d n", * p, * q.a,b);程序运行后的输出结果是()。A8,7,8,7B7,8,7,8C8,7,7,8D7,8,8,7

6、有以下程序 main() { int m=0256,n=256; print

有以下程序 main() { int m=0256,n=256; printf("%o%o ",m,n); } 程序运行后的输出结果是A0256 0400B0256 256C256 400D400 400