问题详情
若有说明:int *p, a=1, b 以下正确的程序段是()。
A.p=&b
B.scanf("%d",&b)
scanf("%d", &p) *p=b
C.p=&b
D.p=&b
scanf("%d", *p) *p=a
请帮忙给出正确答案和分析,谢谢!