假设在UNIX操作系统环境下执行以下程序:
main()
{
printf("Hello World\n");
fork();
printf("Hello World\n");
}
若程序正常运行,子进程创建成功,那么,屏幕上得到输出的有
- A.1个Hello World
- B.2个Hello World
- C.3个Hello World
- D.4个Hello World
热度🔥299
解析:打开微信小程序查看本题解析
有以下程序
#include
main()
{ int s;
scanf("%d", &s);
while( s>0 )
{ switch(s)
{ case 1: printf("%d", s+5);
case 2: printf("%d", s+4); break;
case 3: printf("%d", s+3);
default: printf("%d", s+1); break;
}
scanf("%d", &s);
}
}
运行时,若输入1 2 3 4 5 0,则输出结果是
有以下程序
#include
void fun ( int *s )
{
static int j=0;
do s[j] += s[ j+1]; while(++j<2);
}
main()
{
int i, a[10]={1,2,3,4,5};
for( i=1; i<3; i++ ) fun( a );
for( i=1; i<5; i++ ) printf("%d",a[i]);
printf("\n");
}
程序运行后的输出结果是
下列叙述中正确的是( )。