设有说明ints[5]={1,3,5,7,9};int*p=s;则下列表达式中值为3的是
设有说明ints[5]={1,3,5,7,9};int*p=s;则下列表达式中值为3的是
A、++P
B、++(*p)
C、*(++p)
D、(P+=2)
【正确答案】:C
Top