赞题库-背景图
填空题

以下程序的输出结果是 【12】
#include <stdio.h>
main()
{ int i;
for(i=’a’; i<’f’; i++,i++) printf("%c",i - ’a’ + ’A’);
printf("\n");
}

【参考答案】

ACE