网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

若有以下程序段: 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++)->m

B.*(p++)->m

C.(*p).m

D.*(++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 ” 相关考题
考题 现有如下程序段#include "stdio.h"int fun(int k,int *m){if(k%3)*m=k*k;else *m=k/3;}main(){ int (*p)(int,int *),m;p=fun;(*p)(78, m);printf( "%d\n",m);}则程序段的输出结果为A.24B.25C.26D.27

考题 若有以下程序段: 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)

考题 以下程序运行后,输出结果是______。 fun(int**s,int p[2][3]) {**s=p[1][1]; } main() { int a[2][3]={1,3,5,7,9,11},*p; p=(int *)malloc(sizeof(int)); fun(p,a); printf("%d\n",*p); }A.1B.7C.9D.11

考题 若有如下程序: sub(int *t,int a[3][4]) { int m,n; for(m=0;m<3;m++) for(n=0;n<4;n++) { *t=a[m][n];t++;} } main() { int*t,s[3][4)={{1,2,3),{4,5,6),{7,8,9}}; t=(int*)malloc(50); sub(t,s); printf("%d,%d\n",t[4],t[7]); } 则程序运行后的输出结果是( )。A.4,7B.4,0C.5,8D.程序错误

考题 有以下程序:includevoid fun(int* s,int* * d){* *d=*(s+2);}main(){ inta[]={1,2,3, 有以下程序: #include <stdlib.h> void fun(int * s,int * * d) { * *d=*(s+2); } main() { int a[]={1,2,3,4,5},*b; b=(int *)malloc(sizeof(int)); fun(a,B) ; printf("%d\n",*b+1); } 程序的输出结果是( )A.2B.3C.4D.5

考题 有以下程序段: 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)

考题 6、有以下程序段: 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)

考题 3、若有说明int *p, m=5, n;以下正确的程序段是____________。A.p=n; scanf("%d", p);B.p=n; scanf("%d", *p);C.scanf("%d", n); *p=n;D.p=n; *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