[单选题]
设有定义:int A,*pA=&A;,以下 scanf语句中能正确为变量A读入的数据是 ______。
A.scanf ("%d",pA) ;
B.scanf ("%d",A) ;
C.scanf ("%d",&pA) ;
D.scanf ("%d",*pA) ;
参考答案与解析: