P235-第10章-指针-实例01-输出变量地址原文中 printf("转换为十六进制为:%x\n", &(*ipointer1)); 输出为指针所指向的变量a的地址
应改为 printf("转换为十六进制为:%X\n", *ipointer1); 才能输出变量a转换后的值