首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
若有以下程序 struer stu{char*name,qencter; int score ; }; main() { struct stu a={NULL,’m’,290},b; a.name=(char*)
若有以下程序 struer stu{char*name,qencter; int score ; }; main() { struct stu a={NULL,’m’,290},b; a.name=(char*)
admin
2016-12-28
27
问题
若有以下程序
struer stu{char*name,qencter;
int score ; };
main() {
struct stu a={NULL,’m’,290},b;
a.name=(char*)malloc(10);
strcpy(a.name,"Zhao");
b=a;b.gender=’f’; b.score=350 ;
strcpy(b.name,"Qian");
printf("%s,%c,%d,",a.name,a.gender,
a.score);
printf("%s,%c,%d\n",b.name,b.gender,
b.score); }
则程序的输出结果是
选项
A、Zhao,m,290,Qian,f,350
B、Qian,f,350,Qian,f,350
C、Zhao,m,290,Zhao,f,350
D、Qian,m,290,Qian,f,350
答案
D
解析
主函数中定义结构体类型struct stu,有三个成员,第一个成员为字符指针变量。主函数中为stu类型变量a赋值,首先为a.name成员分配存储空间,存入数据。b=a;语句执行完毕以后,a和b的各个成员值相同,需要注意的是b.name和a.name成员都保存了同一段内存的地址,因此当为变量b赋值的时候,同样更改了a的name成员,而其他成员由于有单独的存储空间而不会发生改变。
转载请注明原文地址:https://jikaoti.com/ti/nwi0FFFM
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
数据结构分为逻辑结构与存储结构,线性链表属于【】。
有以下程序voidf(int*q){inti=0;for(;i
有以下程序#includemain(){intc;while((c=getchar())!=′\n){switch(c-′2′){case0:case1:putchar(c+4);case2:putcha
在C语言中,变量的隐含存储类别是
下列是用户自定义标识符的是
有以下程序:#include<stdio.h>main(){FILE*fp;inti,a[6]={1,2,3,4,5,6};fp=fopen("d2.dat","w");fprintf(fp,"%d%d%d\n"
设变量已正确定义,则以下能正确计算f=n!的程序段是______。
下列叙述中正确的是______。
设变量x和y均已正确定义并赋值。下列if语句中,在编译时将产生错误信息的是
以下选项中可作为C语言合法常量的是
随机试题
曲线y=的渐近线有()
企业购入一台设备,预计使用5年,原始价值24000元,预计净残值1000元,清理费用400元,按平均年限法计提折旧,该设备应计提的年折旧额为()元。
雕栏玉砌应犹在,___________________。问君能有几多愁?___________________。(李煜《虞美人》)
A、13/12B、11/17C、9/22D、7/27B各式化成;分子是等差数列,分母是二级等差数列。
阅读下列材料:魏主下诏,以为“北人谓土为拓,后为跋。魏之先出于黄帝,以土德王,故为拓跋氏。夫土者,黄中之色,万物元也;宜改姓元氏。谓功臣旧族自代(按:代郡名,今山西省东北、河北省西北一带)来者,姓或重复,皆改之。”
下列属于身份权的是()。
Collegesinthe(newlyformed)UnitedSates,(inrecovering),fromtheadverseeffectsoftheAmericanRevolution,inaugurated(
Peoplebornintheautumnlivelongerthanthoseborninthespring.Andtheyarelesslikelytofall【B1】______illwhentheyar
A、Hekeepsforgettingtheimportantthingshehastodo.B、HehasgreatdifficultyrememberingKoreanwords.C、Hecan’tfindthe
A、AldwychTube.B、King’sCross.C、BakerStreet.D、TheTube.D
最新回复
(
0
)