A. float d,*p=d; B. float d,*p=&d; C. float *p=&d,d; D. float d,p=d;
A. b=*&a; B. b=*p; C. b=a; D. b=*a;
A. p++ B. x++ C. *(p++) D. &x++