首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include #include typedefstruct{charname[9];charsex;intscore[2];}STU; STUf(STUa) {STUb={"Zhao",’m’,85,90}; inti; strcpy(a
有以下程序: #include #include typedefstruct{charname[9];charsex;intscore[2];}STU; STUf(STUa) {STUb={"Zhao",’m’,85,90}; inti; strcpy(a
admin
2019-05-17
36
问题
有以下程序:
#include
#include
typedefstruct{charname[9];charsex;intscore[2];}STU;
STUf(STUa)
{STUb={"Zhao",’m’,85,90};
inti;
strcpy(a.name,b.name);
a.sex=b.sex;
for(i=0;i<2;i++)a.score
=b.score
;
returna;
}
main()
{STUc={"Qian",’f’,95,92},d;
d=f(c);
printf("%s,%c,%d,%d,",d.name,d.sex,d.score[0],d.score[1]);
printf("%s,%c,%d,%d\n",c.name,c.sex,c.score[0],c.score[1]);
}
程序运行后的输出结果是( )。
选项
A、Zhao,m,85,90, Qian,f,95,92
B、Zhao,m,85,90, Zhao,m,85,90
C、Qian,f,95,92, Qian,f,95,92
D、Qian,f,95,92, Zhao,m,85,90
答案
A
解析
本题考查的是函数调用时的参数传递问题。程序在调用函数f时,传给函数f的参数只是结构变量c在栈中的一个拷贝,函数f所做所有操作只是针对这个数据拷贝进行的修改,这些都不会影响变量c的值。
转载请注明原文地址:https://kaotiyun.com/show/iDRp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
有以下程序main(){intsum,pad,pAd;sum=pad=5;pAd=++sum,pAd++,++pad;printf(’’%dha’’,pad);)程序的输出结果是
以下选项中关于C语言常量的叙述错误的是
若有以下程序main(){inta=6,b=0,c=0;for(;a&&(b=0);){b+=a;a-=c++;}printf(’’%d,%d,%d\n’’,a,b,c);}则程序的输出结果是
以下数组定义中错误的是
以下叙述中错误的是
以下函数按每行8个输出数组中的数据:yoidfun(int*w,intn){inti;for(i=0;i<n;i++){________printf(’’%d’’,w[i]);}printf(’’\n’’);}下划线处应填入的语句是
给定程序MODll.C中函数fun的功能是:计算S=f(-n)+f(一n+1)+…+f(0)+f(1)+f(2)+…+f(n)的值。例如,当n为5时,函数值应为:10.407143。f(x)函数定义如下:请改正程序中的错误,
对关系S和关系R进行集合运算,结果中既包含关系S中的所有元组也包含关系R中的所有元组,这样的集合运算称为()。
表示关系式x≤y≤z的C语言表达式的是()。
软件按功能可以分为应用软件、系统软件和支撑软件(或工具软件)。下面属于应用软件的是( )。
随机试题
消费率等于最终消费总量除以()
子宫肌瘤肉瘤变多见于年龄较大妇女。()
Thegreatquestionthatthispaperwill,butfeebly,attempttoansweris,whatisthecreativeprocess?Thoughmuchtheory
行政责任主要包括行政处罚和刑事处罚两种方式。()
下列各项属于信息系统的有()。
Artificialintelligencedealspartlywiththe________betweenthecomputerandthehumanbrain.
下列关于Windows2003系统下DHCP服务器的描述中,错误的是()。
ThePeasantUprisingledbyJohnBallhappenedin______.
Manydoctorsknowthestoryof’MrWright’.In1957hewasdiagnosedwithcancer,andgivenonlydaystolive.Hehadtumourst
Therearemanyfeaturesthat【C1】______amovieasAmerican,butperhapsthemost【C2】______isthethemeoftheloner-hero.Int
最新回复
(
0
)