题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2024-05-05 21:04:11

[单选题]以下程序的输出结果是()。 struct HAR { int x, y; struct HAR *p;} h[2]; main() {h[0].x=1;h[0].y=2; h[1].x=3;h[1].y=4; h[0].p=&h[1];h[1].p=h; printf("%d %d \n",(h[0].p)->x,(h[1].p)->y);}
A.1 2
B.2 3
C.1 4
D.3 2

更多"[单选题]以下程序的输出结果是()。 struct HAR { int"的相关试题:

[单选题]以下程序的输出结果是()。 union myun { struct { int x, y, z; } u; int k; } a; main() { a.u.x=4; a.u.y=5; a.u.z=6; a.k=0; printf("%d\n",a.u.x);}
A.4
B.5
C.6
D.0
[单选题]下列程序的输出结果是()。 struct abc { int a, b, c; }; main() { struct abc s[2]={{1,2,3},{4,5,6}}; int t; t=s[0].a+s[1].b; printf("%d \n",t); }
A.5
B.6
C.7
D.8
[单选题]以下程序的输出结果是()。 func(int a,int b) { int c; c=a+b; return c;} main( ) { int x=6,y=7,z=8,r=0; r=func((x--,y++,x+y),z--); printf(“%d\n”,r);}
A.11
B.20
C.21
D.31
[单选题]以下程序输出结果是()。        main() { int m=5; if(m++>5) printf("%d\n",m); esle printf("%d\n",m- -); }
A.7
B.6
C.5
D.4
[单选题]以下程序的输出是()。 struct st { int x; int *y;} *p; int dt[4]={ 10,20,30,40 }; struct st aa[4]={ 50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0],}; main() { p=aa; printf("%d\n",++(p->x)); }
A.10
B.11
C.51
D.60
[单选题]以下程序的输出结果是()。 long fun( int n) { long s; if(n==1||n==2)s=2; else s=n-fun(n-1); return s;} main() { printf("%ld\n", fun(3)); }
A.1
B.2
C.3
D.4
[单选题]以下程序运行后,输出结果是 ()。 fut (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)); fut (&p,a); printf("%d\n",*p); }
A.1
B.7
C.9
D.11
[单选题]有以下程序 int fun(int x,int y,int *cp,int *dp) { *cp=x+y; *dp=x-y; } main() { int a, b, c, d; a=30; b=50; fun(a,b,&c,&d); printf("%d,%d\n", c, d); } 输出结果是()。
A.50,30
B.30,50
C.80,-20
D.80,20
[单选题]以下程序的输出结果是( )。
Void main()
{
Int x=0;
X += (x=4);
Printf("%d\n", x);
}
A.4
B.8
C.16
D.0
[单选题]以下程序的输出结果是( )。 main() { int a, b; for(a=1, b=1; a<=100; a++) { if(b>=10) break; if (b%3= =1) { b+=3; continue; } } printf("%d\n",a); }
A.101
B.6
C.5
D.4
[单选题]有以下程序 int fun(int x[],int n) {static int sum=0,i; for(i=0;iA.45
B.50
C.60
D.55
[单选题]以下程序的输出结果是( )。
Void main()
{
Int x=3,y=0,z=0;
If(x=y+z)
Printf("****");
Else
Printf("####");
}
A.有语法错误不能通过编译
B.****
C.通过编译,但不能通过连接
D.####
[单选题]以下程序段输出结果是()。 main() { int k,j,s; for(k=2;k<6;k++,k++) { s=1;for(j=k;j<6;j++) s+=j;} printf(“%d\n”,s);}
A.9
B.1
C.11
D.10
[单选题]以下程序的输出结果是()。 main() { int i,j,x=0; for(i=0;i<2;i++) { x++; for(j=0;j<3;j++) { if(j%2)continue; x++; } x++; } printf("x=%d\n",x); }
A.x=4
B.x=8
C.x=6
D.x=12

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码