int main(){ char a[20]={"china"};printf("%c",*strchr(a,'a'));//查找a[20]中的a,返回他的地址,这里应该还是输出a return 0;}//查找应该是从左往右的