A. int &a=b; B. double *p=&b; C. z=x&y; D. q=&p;
A. int x;const int *p=&x;*p=5;cout<<*p<<endl; B. const int y=9;int *const p=&y;*p=5;cout<<*p<<endl; C. int m=6;const int * const n=&m;m=10;cout<<*n<<endl; D. int x=100;const int &y=x;x=10;y=20;cout<<x<<y<<endl;