单项选择题

下面程序的输出结果是( )。
#include<stdio.h>
main()
char a[]='a','b','c','d','f','g',*p;
p=a;
printf("%c\n",*p+4);

A.a
B.b
C.e
D.f