char *p="hello"; printf("%s",p); p++; printf("%s",p); printf("%c",*p); char *p="hello";printf("%s",p);p++;printf("%s",p);printf("%c",*p); 参考答案 查看答案