首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include main() { int i,s=0,t[]={1,2,3,4,5,6,7,8,9}; for(i=0;i
有以下程序: #include main() { int i,s=0,t[]={1,2,3,4,5,6,7,8,9}; for(i=0;i
admin
2020-11-27
22
问题
有以下程序:
#include
main()
{ int i,s=0,t[]={1,2,3,4,5,6,7,8,9};
for(i=0;i<9;i+=2)s+=*(t+i);
printf(“%d\n”,s);
}
程序执行后的输出结果是( )。
选项
A、20
B、25
C、45
D、36
答案
B
解析
统计1~9九个数中的奇数和,此题考察指向数组的指针。C语言规定数组名代表数组的首地址,也就是第一个元素的地址。因此*(t+i)代表数组的第i+1个元素。程序运行的结果是1+3+5+7+9=25。
转载请注明原文地址:https://kaotiyun.com/show/ap3p777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
有以下程序#includemain(){inta=0,b=0;/*给a赋值a=10:b=20;给b赋值*/printf("a+b=%d\n",a+b);/*输出计算结果*/}程序运行后的输出结果是
有三个关系R、S和T如下:由关系R和S通过运算得到关系T,则所使用的运算为
设有定义:structcomplex{intreal,unreal;}data1={1,8},data2;则以下赋值语句中错误的是()。
有以下程序:#include<stdio.h>main(){intaa[3][3]={{2},{4},{6}},i,*p=&aa[0][0];for(i=0;i<2;i++){if(i==0)aa[i][i+1]=*p+1;els
有以下程序#includeintfun(int(*s)[4],intn,intk){intm,i;m=s[0][k];for(i=1;i<n;i++)if(s[i][k]>m)m=s[i][k];returnm;}main(){int
以下叙述中正确的是
有以下程序main(){chara[5][10]={"one","two","three","four","five"};inti,j;chart;for(i=0;i
有以下程序,程序中库函数islower(ch)用以判断ch中的字母是否为小写字母#include#includevoidfun(char*p){inti=0;while(p[i]){if(p[
下列函数的功能是voidfun(char*a,char*b){while((*b=*a)=’\0’){a++;b++;}}
关于C语言标识符,以下叙述中错误的是()。
随机试题
关于近球小体的颗粒细胞的描述,哪项是错误的?
泌尿系统感染的治疗原则。
心电图检查不能反映的是
下面有关教师为人师表的特征说法正确的是()。
公文拟制包括公文的起草、审核、()等程序。
•Youwillhearfiveshortrecordings.•Foreachrecording,decidewhatopinionthespeakerhasaboutthecompanytheyworkfor
Warmaybeanaturalexpressionofbiologicalinstinctanddrivestowardaggressioninthehumanspecies.Naturalimpulsesofan
Schoolsthroughouttheworldareexperiencingaperiodofrapidchangeand,inmanycases,arefindingthatextremely【M1】______
A、EriccomesfromEurope,whileChenisaChinese.B、Chensuggeststhattheygotopubs.C、ChenalreadyknowsthatErichasnoi
TheWorld’sEndangeredLanguagesAsthesecondmillennium(一千年)comestoaclose,morethan6,000distincthumanlanguagesa
最新回复
(
0
)