#include void main() { char *p="47340"; printf("%s\n",*p); }
这个哪里有问题?谢谢。
收起
*p 是取值 p是地址,字符串的首地址就是字符串本身
报告相同问题?