# include <stdio.h>
int main()
{ char *s[]={"one","two","three"},*p;
p=s[1];
printf("%c,%s\n",*(p+1),s[0]);
return 0;
}执行后输出结果是 。
放编译器里写一下