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


  • 1、
【正确答案】 1、ABCDBCDCDD    
【答案解析】