填空题

以下程序运行后输出的结果是______。
main()
char s[]="GFEDCBA";
int p=6;
while(s[p]!=’D’)
priritf("%c", p);
p=p-1;

【参考答案】

A B C