#include<iostream>
using namespace std;
#include<ctime>
int main() {
int a = 10;
//指针定义的语法 数据类型 * 指针变量名
int* p;
p = &a;
cout << "a的地址为" <<(int) &a << endl;
cout << "指针p为" << p << endl;
//2 使用指针
//可以通过*解引用的方式 找到指针内存中的数据(指向) 并且修改常量的值(修改)
*p = 1000;
cout << "a=" << a << endl;
cout << "*p= " << *p << endl;
system("pause");
return 0;
}