问题 填空题

下面程序的输出结果是 【12】
char b[]="ABCD";
main()
char *p=b;
for(;*p;p++)
printf("%s",p);
printf("\n");

答案

参考答案:ABCDBCDCDD

单项选择题
判断题