void show(int *pointer)返回值是 void函数名称是 show参数是一个 int类型的指针 形参名称为 pointer根据名称来推测,这个函数的功能,应该是打印输出pointer指针所指向变量的具体值。