#includeusing namespace std;void main() {int a, *c=&a;int &b=a; //是C++中的一种指针b=10;cout<<"a="< <<"&b="<<&b //看b地址 <<"c="< <}