A、*p=8;
B、*q=5;
C、q=p;
D、p=1;
第1题:
若有下列定义,则对a数组元素地址的正确引用是( )。
int a[5],*p=a;
A.p+5
B.*a+1
C.&a+1
D.&a[0]
第2题:
若有以下定义,则对a数组元素地址的正确引用是() int a[5],*p=a;
A.p+5
B.*a+1
C.&a+1
D.&a[0]
第3题:
3、若有以下定义和语句:int a[2][3],(*p)[3]=a;则对a数组元素地址的正确引用为______。
A.*(p+2)
B.p[2]
C.p[1]+1
D.(p+1)+2
第4题:
若有以下定义和语句:int a[2][3],(*p)[3]=a;则对a数组元素地址的正确引用为______。
A.*(p+2)
B.p[2]
C.p[1]+1
D.(p+1)+2
第5题:
【填空题】若有以下定义和语句: int a[10], *p; p=a; 则在程序中,引用数组元素a[m]的四种形式是:______(1)_____、____(2)____、_____(3)_____和a[m]。(假设m 已正确说明并赋值)