赞
踩
printf("%c\n",*str);//输出首字符
printf("%s\n",str);//输出整串字符
printf("%p\n",str);//输出字符串首字符地址
printf("%p\n",&str);//输出指针str的地址