首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include<stdio.h> struct ball { char color[10]; int dim; }; main() { struet ball list[2]={{"white",2},{"yellow",3}}; prin
有以下程序: #include<stdio.h> struct ball { char color[10]; int dim; }; main() { struet ball list[2]={{"white",2},{"yellow",3}}; prin
admin
2021-07-09
28
问题
有以下程序:
#include<stdio.h>
struct ball
{
char color[10];
int dim;
};
main()
{
struet ball list[2]={{"white",2},{"yellow",3}};
printf("%s:%d\n",(list+1)->color,list->dim);
}
程序运行后的输出结果是( )。
选项
A、yellow:3
B、yellow:2
C、white:2
D、white:3
答案
B
解析
结构体定义时初始化,list[0]={" white",2},list[1]={"yellow",3},(list+1)->color=list[1].color="yellow",list->dim=list[0].dim=2,因此,打印的结果是yellow:2。故答案为B选项。
转载请注明原文地址:https://kaotiyun.com/show/CYtp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
已定义以下函数intfun(int*p){return*p;)fun函数返回值是
一个栈的初始状态为空。现将元素1,2,3,A,B,C依次入栈,然后再依次出栈,则元素出栈的顺序是
以下定义数组的语句中错误的是
以下有关宏替换的叙述不正确的是()。
以下叙述中正确的是
给定程序中已建立一个带有头结点的单向链表,链表中的各结点按结点数据域中的数据递增有序链接。函数fun的功能是:把形参x的值放入一个新结点并插入到链表中,插入后各结点数据域的值仍保持递增有序。请在程序的下划线处填入正确的内容并把下划线删除,使程序得
以下定义语句中正确的是()。
设a和b均为int型变量,且a=6、b=11、c=3,则能使值为3的表达式足()。
有以下程序:#include<stdio.h>#defineS(x)(x/x)*xmain(){intk=6,j=3;printf("%d,%d\n",S(k+j),S(j+k));}程序运行后的输出结果是()。
以下不构成无限循环的语句或语句组是()。
随机试题
2012年6月,广州某公司销售部聘用了两名外地青年林某与李某为业务员,事后销售部才将此事向人事部作了口头说明。对此,人事部未作表示。二人都没有签订劳动合同,工资由销售部利润留成中支付。半年后的某天,林某在外出销售中遇到车祸。造成终身残废。于是,林某向公司要
Afriendofmine,inresponsetoaconversationwewerehavingabouttheinjusticesoflife,askedmethequestion,"Whosaidli
卡介苗的初种时间正确的是
有关行政诉讼中的证据,下列说法哪些是正确的?()
行列式展开式中的常数项为()。
x
在SQLSELECT语句中为了将查询结果存储到临时表应该使用短语( )。
Whichofthefollowingstatementsbestdescribetheconditionofthepassengers?
It’swellthatyoungmenshouldbeginatthebeginningandoccupythemostsubordinatepositions.Manyoftheleadingbusinessme
GMOrganismsByfarthemostcommongeneticallymodified(GM)organismsarecropplants.Butthetechnologyhasnowbeenapp
最新回复
(
0
)