打印的地方错了#include main() { char a[10]={'a','b','c','d','e','f','g','h','i','j'}; int *str=(int*)a; str++; printf("%c",(char)(*str) ); }