填空题

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

【参考答案】

ACE