#include void main(){ char *p; char a[10]={'a','b','c','d','e','f','g','h','i','j'}; p=a; printf("%c", *(p+8)); getchar();}//输出结果是 : i