%p与指针对应,是输出指针的地址 如: char * p="abc"; ...... printf("The address %p is %s", p, p); 输出就如同这样 The address 0FEA is abc