选择题   下面程序的输出结果是______。
    #include<stdio.h>
    main()
    {char a[]={'a','b','c','d','f','g'},*p;
    p=a;
    printf('%c\n',*p+4);
    }
 
【正确答案】 C
【答案解析】