单项选择题

有以下程序 main() { char s[]="ABCD",*p; for(p=s+1;p<s+4;p++)printf("%s\n",p); } 程序运行后的输出结果是

A.ABCD BCD CD D
B.A B C D
C.B C D
D.BCD CD D