#include<stdio.h> #include<string.h> main() { char *s[2]={"****","****"};//不理解 while(*s[1]!='\0') { printf("%s\n",s[0]+strlen(s[1]-1));//不理解 s[1]++; } }
你确定你发出来的代码能编译通过吗