设有定义:int a[10],*P;,则合法的赋值语句是
设有定义:int a[10],*P;,则合法的赋值语句是
A、p=(a++) + 5;
B、p=a[5];
C、p=a+5;
D、p=*(a+5);
【正确答案】:C
Top