首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序 #include main() { int a=1, b=2, c=3, x; x = (a^b)&c; printf("%d\n",x); } 程序的运行结果是( )。
有以下程序 #include main() { int a=1, b=2, c=3, x; x = (a^b)&c; printf("%d\n",x); } 程序的运行结果是( )。
admin
2015-07-28
22
问题
有以下程序
#include
main()
{
int a=1, b=2, c=3, x;
x = (a^b)&c;
printf("%d\n",x);
}
程序的运行结果是( )。
选项
A、3
B、1
C、2
D、0
答案
A
解析
语句"x = (a^b)&c;"先计算表达式"(a^b)",即计算"0001^0010"结果为0011,然后计算"0011&c",即计算"0011&0011",结果为0011,对应十进制数为3,答案选A。
转载请注明原文地址:https://kaotiyun.com/show/27Jp777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
下面程序段的运行结果是______。main(){chara=2,b=3,c=5,d,e;d=a-b|c;e=a-b||c;printf("%d,%d",d,e);}
下面程序的执行结果为______。 main() { int a,b; for(a=1,b=1;a<=100;a++) { if(b>=20) break; if(b%3==1) { b+=3; continue; } b-=5; } printf("%d
有如下程序 main() { int n=9; while(n>6){ n-; printf("%d",n); } } 该程序段的输出结果是______。
在执行以下程序时,如果从键盘上输入:ABCdef<回车>,则输出为______。 main() { char ch; while((ch=getchar())!=’\n’) { if(ch>=’A’ && ch<=’Z’) ch=ch+32; else i
下列程序的输出结果是______。voidfun(int*n){while((*n)--);printf("%d",++(*n));}main(){inta=50;fun(&a
有以下程序#includetypedefstruct{intnum;doubles;}REC;voidfunl(RECx){x.nllm=23;x.s=88.5;}main(){RECa={16,90.0);funl(A);
有以下程序#inculde#inculdestrtictA{inta;charB[10];douBlec;};voidF(structAt);main(){structAa={1001,”zhangDa”,1
以下选项中与iF(a==1)a=B;elsea++;语句功能不同的sWish语句是
主调函数中的两个变量a和b,要求调用函数交换a、b的值,返回交换结果,则以下正确的函数是______。
有下列函数定义:intfun(doublea,doubleb){returna*b;}若下列选项中所用变量都己正确定义并赋值,错误的函数调用是()。
随机试题
A.甲基纤维素口服B.石蜡油口服C.肥皂水灌肠D.外科手术E.半乳糖口服结肠癌便秘
A.石膏B.知母C.芦根D.天花粉E.栀子功能清热泻火,滋阴润燥的药物是
肾上腺素能药物的侧链氨基绝大多数为
晚期肝癌最常见的并发症是()
开标时,由投标人或其推选的代表检验投标文件的密封情况。确认无误后,工作人员当众拆封,宣读( )。
要掌握时机,讲究时效,属于督查工作的()原则。
试述公平理论的主要内容及其对管理者的启示。
WecanlearnfromthebeginningthatthecompetitioninthetravelindustryrevolveschieflyaroundWhichofthefollowingisT
Thesedayswehearlotsofnonsenseaboutthe"greatclasslesssociety".Theideathatthetwentiethcenturyistheageofthec
•Readthearticlebelowaboutatrainingcompany.•Inmostofthelines34-45,thereisoneextraword.Itiseithergrammatica
最新回复
(
0
)