以下程序运行后的输出结果是______.
#include <stdio.h>
main()
{char a;
for(a=0; a<15; a+=5)
{putchar(a+’A’);}
printf(“/n”);
}