若有以下程序段:A)(*p).mB)*(p 1)-mC)*(p )-nD)(p ).(*m)

若有以下程序段:

A)(*p).m

B)*(p 1)->m

C)*(p )->n

D)(p ).(*m)


相关考题:

若有说明:int * p,m=51; n;,以下正确的程序段是()A.p= scanf("%d",D.p= p=&m;

若有以下程序段: struct st {int n; int*m: }; int a=2,b=3,c=5; struct st s[3]=({101,a},{102,c},{103,B)}; main() {struct st*p; p=s; } 则以下表达式中值为5的是( )。A.(*p).mB.*(p+1)->mC.*(p++)->nD.(p++)(*m)

若有以下程序段: struct st {int n; int*m;}; int a=2,b=3,c=5; struct st s[3]=({101,a},{102,c},{103,b}}; main() {struct st*p; p=s; …} 则以下表达式中值为5的是( )。A.(p++)->mB.*(p++)->mC.(*p).mD.*(++p)->m

有以下程序段: int a=1,b=2,c=3; struct dent { int n ; int *m; } s[3] = {{101,a}, {102,b},{103,c}}; struct dent *p=s; 则以下表达式中值为2的是()。A.(p++)->mB.*(p++)->mC.(*p).mD.*((p)->m)

若有定义: float *p,m; , 则以下正确的表达式是()。A.p=mB.p=mC.*p=mD.*p=*m

若有定义:float *p,m; ,则以下正确的表达式是()。A.p=mB.p=mC.*p=mD.*p=*m

若有以下程序段,则以下表达式中值为2的是()。struct dent { int no; int *m; }; int a=1,b=2,c=3; struct dent s[3]={{101,a},{102,b},{103,c}}; int main() { struct dent *p; p=s; … }A.(p++)->mB.* (p++)->mC.(*p).mD.*(p)->m

7、若有定义: float *p,m; , 则以下正确的表达式是()。A.p=mB.p=mC.*p=mD.*p=*m

若有说明int *p1,*p2,m=5,n;以下正确的程序段是 。A.p1=m;p2=p1;B.p1=m;p2=n;*p1=*p2;C.p1=m;p2=p1;D.p1=m;*p2=*p1;