问答题 以下程序输出的结果是: #include "stdio.h" void main() { char ch[]="I-love-Great-Wall-of-China!"; char *p=ch; printf("%c",*(p+5)); }
【正确答案】e
【答案解析】