#include <stdio.h>

//指针变量
int main()
{
	int a = 18;
	int* p = &a;//指针变量
	printf("%x\n",p);
	printf("%d\n",*p);
	return 0;
}

指针变量_#include