[试题]

试题10

以下程序运行后的输出结果是______.

#include <stdio.h>

main()

{char a;

for(a=0; a<15; a+=5)

{putchar(a+’A’);}

printf(“/n”);

}

参考答案与解析: