题目内容

以下程序的输出结果是 【 11 】。
#include <stdio.h>
main()
{ char *ch[4]={"red',"green","blue"};
int i=0;
while(ch[i] )
{ putchar(ch[i][0]); i++;)
}

查看答案
更多问题

在WORD的编辑,要想检查当前文档中的文字拼写,应当使用()菜单中的命令()

A. 格式
B. 编辑
C. 工具
D. 视图

有以下程序
#include <stdio.h>
main()
{ int arr[ ]={1,3,5,7,2,4,6,8},i,start;
scanf("%d", &start);
for (1=0; 1<3; i++)
printf(”%d”,arr[ (start+i)%8] );
}
若在程序运行时输入整数10<回车>,则输出结果为【 12 】。

以下程序的输出结果是【 7 】。
#include <stdio.h>
main()
{ int a=37;
a+=a%=9; printf(”%d\n”, a),
}

以下程序的输出结果是【 14 】
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
main()
{ char *p,*q,*r,
p=q=r=(char*)malioc(sizeof(char)*20);
strcpy(p,"attaboy,welcome!");
printf(”%c%c%c\n”,p[ 11 ], q[ 3 ],r[ 4 ]);
free(p);
}

答案查题题库