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