首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序 #include <stdio.h> struct person { char name[10]; int age; }; main( ) { struct person room[2] = {{"Wang",
有如下程序 #include <stdio.h> struct person { char name[10]; int age; }; main( ) { struct person room[2] = {{"Wang",
admin
2021-06-15
22
问题
有如下程序
#include <stdio.h>
struct person
{
char name[10];
int age;
};
main( )
{
struct person room[2] = {{"Wang", 19}, {"Li", 20}};
printf("%s:%d\n", (room+1)->name, room->age);
}
程序运行后的输出结果是
选项
A、Li:19
B、Wang:19
C、Li:20
D、Wang:17
答案
A
解析
声明结构类型person后,在main函数中定义了一个结构数组room,其中有2个元素,每个元素都是person类型数据。在输出中,利用(room指针地址+1)指向room数组中第二个元素,并将该元素的name信息进行输出,同理,对第一个元素中的age信息输出,因此,答案为A选项。
转载请注明原文地址:https://kaotiyun.com/show/Jftp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
以下叙述中正确的是
设有定义语句:char*aa[2]={"abcd","ABCD"};则以下叙述正确的是
以下叙述中正确的是
有以下程序#includevoidmain(){inta=1,b=0;printf("%d,",b=(a++)+(a++));printf("%d\n",a+b);}程序运行后的输出结果是(
下列叙述中正确的是( )。
设有如下的说明和定义struct{inta;char*s;}x,*p=&x;x.a=4;x.s="hello";则以下叙述中正确的是
以下选项中,没有编译错误的是
下面函数调用语句含有实参的个数为()。func((exp1,exp2),(exp3,exp4,exp5));
有三个关系R、S和T如下:则由关系R和S得到关系T的操作是
以下说法正确的是()。
随机试题
现在,我国保险市场的结构,用一句话来概括,就是已经呈现出“多家办保险,多种形式办保险”的新局面,初步形成了多种类型和多层次提供保险的服务和保障体系。()
=__________.
A.0.2~0.3mmB.0.4~0.6mmC.0.9~1.0mmD.0.7~0.8mmE.2.0~2.5mm弯制箭头卡一般选用钢丝直径为
根据《行政诉讼法》及相关规定,中级人民法院对下列哪些案件具有管辖权?
______是儿童身心发展到一定水平的产物,是外部言语的内化,是思维过程的依靠,对心理活动有调节和控制的作用。
幼儿园的环境创设主要是指()。
Doyouwanttoreturnanitem?InaccordancewithNewJerseylaw,Mandy’sToyStoreallowscustomerstoreturnanyproductf
A、Becauseshefeelsveryhotintheroom.B、Becauseshewantstoavoidmeetingpeople.C、Becauseshewantstosmokeacigarette
Mostworthwhilecareersrequiresomekindofspecializedtraining.Ideally,therefore,thechoiceofan【C1】______shouldbemade
A、TheywillsailtoSanFrancisco.B、TheywillflytoSanFrancisco.C、TheywilldrivetoSanFrancisco.D、Theywilltakeatrai
最新回复
(
0
)