单项选择题

以下程序运行后的输出结果是
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