首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include<stdio.h> int fun1(int a,int b) {return a+b;} int fun2(int a,int b) {return a-b;} int fun(int(*t)(int,int),int x,
有以下程序: #include<stdio.h> int fun1(int a,int b) {return a+b;} int fun2(int a,int b) {return a-b;} int fun(int(*t)(int,int),int x,
admin
2021-07-09
17
问题
有以下程序:
#include<stdio.h>
int fun1(int a,int b)
{return a+b;}
int fun2(int a,int b)
{return a-b;}
int fun(int(*t)(int,int),int x,int y)
{return((*t)(x,y));}
main()
{
int x;
X=fun(fun1,9,3);
x+=fun(fun2,8,3);
printf("%d\n",x);
}
程序运行后的输出结果是( )。
选项
A、24
B、23
C、17
D、22
答案
C
解析
本题主要考查函数作为形参时的使用,由x=fun(fun1,9,3);可得到x=9+3=12,而后直接传入函数fun2,x=x+8-3=12+5=17。故C选项正确。
转载请注明原文地址:https://jikaoti.com/ti/Apz0FFFM
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
为了对有序表进行对分查找,则要求有序表()。
设有定义doublea[10],*s=a;以下能够代表数组元素a[3]的是
下列叙述中正确的是()。
有以下程序#includemain(){inta=7;while(a--);printf("%d\n",a);}程序运行后的输出结果是()。
有以下程序:#include<stdio.h>intfun(int*k){intb=0;b=*k+b;return(b);}main(){inta[10]={1,2,3,4,5,6
以下选项中,当x为大于1的奇数时,值为0的表达式为()。
已知“inta=6;”则执行“a+=a-=a*a;”语句后,a的值为()。
程序中已构成如下图所示的不带头结点的单向链表结构,指针变量s、P、q均已正确定义,并用于指向链表结点,指针变量s总是作为指针指向链表的第一个结点。若有以下程序段:q=s;s=s一>next;P=s;while(P一>next
下面是有关C语言字符数组的描述,其中错误的是()。
以下选项中合法的标识符是
随机试题
企业的有效激励机制常对员工形成外在条件的刺激。
瑞特染色中缓冲液的最主要作用是
患者,女,38岁。洗衣时突发右侧肢体活动不利。查体:意识清,失语,听诊二尖瓣听诊区可闻及双期杂音,心律绝对不齐,右侧偏瘫,上肢重于下肢,右侧偏身感觉减退。最可能的诊断是
单位工程施工平面图的设计原则包括( )。
我国的民族居住状况的特点是以汉族为主体,大杂居、小聚居。()
根据《合同法》规定,在运输过程中旅客自带物品毁损、灭失,承运人有过错的,应当承担损害赔偿责任。此规定适用的归责原则是()。
有如下程序:#includeusingnamespacestd;classShape{//图形类public://图形绘制函数(用显示字母模拟)virtual
Wearetryingourbest______thepoorchildrenwholosttheirparents.
CharacterAnalysisofShakespeareanPlaysI.Characteranalysis—characterevaluationasthebestwaytostarttheanalysisof
FormanypeopleintheU.S.,sportsarenotjustforfun.Theyarealmostareligion.Thousandsofsportsfansbuyexpensivetic
最新回复
(
0
)