填空题

下面程序的输出走 【9】 。 main() {enum em {em1=3,em2=1,em3}; char*aa[]={"AA","BB","CC","DD"}; printf("%s%s%s\n",aa[em1],aa[em2],aa[em3]); }

【参考答案】

DDBBCC