相关试题
【单选题】
一个 char 型数据,它的值在内存中存放的是 ___。
A. ASCll 代码值
B. 代码值
C. 内码值
D. 十进制代码值
【单选题】
执行语句“x=(a=3,b=a--);”后,X,a, b 的值依次为___。
A. 3,3,2
B. 2,3,2
C. 3,2,3
D. 2,3,3
【单选题】
以下能正确定义且赋初值的语句是___。
A. int n1=n2=10;
B. char c=32
C. float f=f+1.1;
D. double x=12.3E2.5
【单选题】
若有定义:int a=8, b=5; float C;,执行语句C=a/b+0.4;后,C的值为___。
【单选题】
使用“scanf(”x=%f,y=%f“,&x,&y)”,要使 x,y 均为 1.25,正确的输入是___。
A. 1.25,1.25
B. 1.25 1.25
C. x=1.25,y=1.25
D. X=1.25 y=1.25
【单选题】
设有 int i=010,j=10;则执行“printf(”%d, %d\n“,++i,j--);”的输出是___。
A. ll, 10
B. 9, 10
C. 010, 9
D. 10, 9
【单选题】
以下4组用户定义标识符中,不合法的是___。
A. main
B. If
C. int
D. txt
【单选题】
已知int j,i=1;执行语句“j=i++;”后,变量i的值是___。
【单选题】
在C语言中,要求运算数必须是整型的运算符是___。
【单选题】
以下选项中不能作为 C 语言合法常量的是___。
A. 'cd'
B. 0.1e+6
C. "\a"
D. '\011'
【单选题】
当用户要求输入的字符串中含有空格时,应使用的输入函数是___。
A. scanf( )
B. getchar( )
C. gets( )
D. getc( )
【单选题】
if语句的控制条件是___。
A. 只能用关系表达式
B. 只能用逻辑表达式
C. 只能用关系表达式或逻辑表达式
D. 可以用任何表达式
【单选题】
以下错误的描述是___。
A. break语句不能用于循环语句和switch语句外的任何其他语句
B. 在switch 语句中使用break语句或continue语句的作用相同
C. 在循环语句中使用continue语句是为了结束本次循环,而不是终止整个循环
D. 在循环语句中使用break语句是为了使流程跳出循环体,提前结束循环
【单选题】
当把以下四个表达式用作if语句的控制表达式时,有一个选项与其它三个选项含义不同,这个选项是___。
A. k%2
B. k%2==1
C. (k%2)!=0
D. !k%2==1
【单选题】
若变量c为char类型,能正确判断出c为小写字母的表达式是___。
A. 'a'<=c<= 'z'
B. (c>= 'a')||(c<= 'z')
C. ('a'<=c)and ('z'>=c)
D. (c>= 'a')&&(c<= 'z')
【单选题】
下列条件语句中,功能与其他语句不同的是___。
A. if(a==0) printf("%d\n",x); else printf("%d\n",y);
B. if(a==0) printf("%d\n",y); else printf("%d\n",x)
C. if (a!=0) printf("%d\n",x); else printf("%d\n",y)
D. if(a) printf("%d\n",x); else printf("%d\n",y)
【单选题】
以下错误的描述是___。
A. break语句不能用于循环语句和switch语句外的任何其他语句。
B. 在switch 语句中使用break语句或continue语句的作用相同。
C. 在循环语句中使用continue语句是为了结束本次循环,而不是终止整个循环。
D. 在循环语句中使用break语句是为了使流程跳出循环体,提前结束循环。
【单选题】
for (j=0;j<10;j++);循环结束后,j的值是___。
【单选题】
下面对数组的定义正确的是 ___
A. int n=10; int array[n]
B. int array[10]
C. int n; scanf(“%d”,&n); int array[n]
D. int n; int array[n]; scanf(“%s”,array)
【单选题】
正确的数组定义语句为 ___
A. int A[-3]
B. int A[3,5]
C. int A[ ][ ]
D. int *A[3]
【单选题】
设已定义数组int array[3][4]; 则对此数组正确的引用是 ___
A. array[1,2]
B. array [1][4]
C. array[1][1+2]
D. array(1)(3)
【单选题】
设二维数组array有m列,则在array[i][j]之前的元素个数为___
A. j*m+i
B. i*m+j
C. i*m+j-1
D. i*m+j+1
【单选题】
长度为5的int类型数组和长度为3的double类型数组,哪一个数组占用内存空间多___
A. int 型的多
B. double型的多
C. 一样多
D. 不一定
【单选题】
字符数组char a[]=“one\n”;占多少内存字节___
【单选题】
下面哪个说法是错误的___
A. 数组元素有相同的名字
B. 数组元素有相同的数据类型
C. 数组元素在内存中是连续存储的
D. 数组元素有据有相同的下标
【单选题】
二维数组第一个元素的下标是___
A. 0,0
B. 0,1
C. 1,1
D. 1,0
【单选题】
若有定义 float x[3][100],下标最大的数组元素是___
A. x[2][99]
B. x[0][100]
C. x[3][99]
D. x[2][100]
【单选题】
判断字符串s1是否大于字符串s2, 则应当使用: ___
A. if(s1>s2)
B. if(strcmp(s1,s2))
C. if(strcmp(s1,s2)>0)
D. if(strcmp(s2,s1)>0)
【单选题】
下述对C语言字符数组的描述正确的是___
A. 任何一维数组的名称都是该数组存储单元的开始地址,且其每个元素按照顺序连续占用存储空间
B. 一维数组的元素在引用时其下标大小没有限制
C. 任何一个一维数组的元素,可以根据内存的情况按照其先后顺序以连续或非连续的方式占用存储
【单选题】
下述对C语言字符数组的描述中正确的是___
A. 任何一个一维数组的元素在引用时,其下标可以是整型、实型或字符型常量
B. 一维数组的元素实质上就是一个变量,代表内存中的一个存储单元
C. 如果要引用数组中的每一个元素,则直接使用该数组名称即可
D. 以上都不对
【单选题】
在一个C语言程序构成中,较完整的描述是___
A. 由主程序与子程序构成
B. 由多个主函数与多个函数构成
C. 由主函数与函数构成
D. 由一个主函数与多个函数构成
【单选题】
C语言在程序开始执行时,其正确的描述是___
A. 由编写程序语句的顺序格式执行
B. 在主函数main()开始处执行
C. 在第一个函数处执行
D. 由人随机选择执行
【单选题】
下列有关函数错误的描述是___
A. C语言中允许函数嵌套定义
B. C语言中允许函数递归调用
C. 调用函数时,实参与形参的个数、类型需完全一致
D. C语言函数的缺省数据类型是int类型
【单选题】
在C语言中,各个函数之间具有的关系是___
A. 不允许直接递归调用,也不允许间接递归调用
B. 允许直接递归调用,不允许间接递归调用
C. 不允许直接递归调用,允许间接递归调用
D. 允许直接递归调用,也允许间接递归调用
【单选题】
在C语言中,函数的返回值的类型是由___
A. C语言的编译程序,在程序编译时决定
B. 由调用该函数的主调函数所决定
C. 由return语句的表达式的类型所决定
D. 由定义该函数时指定的函数类型所决定
【单选题】
当调用函数时,如果实参是一个数组名,则向函数传送的是___
A. 数组的首元素
B. 数组的首地址
C. 数组每个元素的地址
D. 数组每个元素中的值
【单选题】
下列说法正确的是___
A. 一个函数的函数体必须要有变量定义和执行部分,二者缺一不可
B. 一个函数的函数体必须要有执行部分,可以没有变量定义
C. 一个函数的函数体可以没有变量定义和执行部分,函数可以是空函数
D. 以上都不对
【单选题】
下列说法正确的是___
A. main函数必须放在C程序的开头
B. main函数必须放在C程序的最后
C. main函数可以放在C程序的中间部分,即在一些函数之前在另一个函数之后,但在执行C程序时是从程序开头执行的
D. main函数可以放在C程序的中间部分,即在一些函数之前在另一些函数之后,但在执行C程序时是从main函数开始的
【单选题】
下列说法正确的是___
A. 在执行C程序时不是从 main函数开始的
B. C程序书写格式严格限制,一行内必须写一个语句
C. C程序书写格式自由,一个语句可以分写在多行上
D. C程序书写格式严格限制,一行内必须写一个语句,并要有行号
推荐试题
【判断题】
老舍的《茶馆》是新中国戏剧的经典之作。
【判断题】
周立波的《暴风骤雨》是一部史诗性的作品。
【判断题】
"碧云天,黄花地,西风紧,北雁南飞。"出自《桃花扇•却奁》。
【判断题】
朱自清的《给亡妇》具有明显的絮语散文的特点。
【判断题】
《清忠谱》和《桃花扇》集明清传奇之大成。
【判断题】
《定风波》(莫听穿林打叶声)体现了苏轼旷达的词风。
【单选题】
With increased taxation and rising prices, I am going to have to __________ on quite a lot of things – clothes, records and so on.___
A. cut off
B. cut in
C. cut out
D. cut down
【单选题】
Have a cup of tea, _______?___
A. shall we
B. will you
C. won't you
D. do you
【单选题】
There is very ___ hope that she will pass the exam.___
A. few
B. small
C. much
D. little
【单选题】
I am not sure whether we can give the right advice _____emergency.___
A. on account of
B. in case of
C. at the risk of
D. in spite of
【单选题】
In their letter to the students’ representative assembly, the freshmen insisted on __________ in the Student Union.___
A. represented
B. being represented
C. having represented
D. have been represented
【单选题】
Nobody noticed the thief slip into the house because the lights happened to _____.___
A. be put up
B. give in
C. be turned on
D. go out
【单选题】
----- John, may I ask you a favour? ----- _________
A. I’m sorry, but why?
B. Sure,what is it?
C. Yes,you could.
D. I’d love to,and I’m busy.
【单选题】
The two thieves fled the town separately, _______ a bag.___
A. each carrying
B. whose that watch is
C. whose watch is that
D. whose watch is
【单选题】
Her heart _____ faster when she entered the exam hall.___
A. jumped
B. sank
C. beat
D. hit
【单选题】
The taxi driver was put in_____prison because his car had knocked down a child.His wife went to_____ prison to see him twice a month.___
A. /; /
B. the; the
C. /; the
D. the; /
【单选题】
----- Where’s John, do you know? ----- Oh, _____to hospital.___
A. he’s taken
B. he’ll be taken
C. he’s been taken
D. he’ll take
【单选题】
It was the wealth of the_____pioneer landowner John Harvard that made Harvard University possible.___
A. precious
B. curious
C. anxious
D. prosperous
【单选题】
----- "Where is your college located, John?" ----- "It is ________."___
A. on the Fifth Avenue
B. on Fifth Avenue
C. in Fifth Avenue
D. at Fifth Avenue
【单选题】
__________ is she in London than she rings up her old friend Mary.___
A. Scarcely
B. Rarely
C. No sooner
D. Hardly
【单选题】
A fireman discovered the __________ of the fire.___
A. truth
B. reason
C. cause
D. fact
【单选题】
he weather __________ us from climbing the mountain.___
A. discharged
B. disguised
C. disturbed
D. discouraged
【单选题】
I didn't expect to receive a postcard from you!It's really _____my wildest imagination.___
A. behind
B. beyond
C. except
D. through
【单选题】
John Smith is _____ honest young man.___
【单选题】
She __________ in wearing that old – fashioned hat.___
A. insists
B. persists
C. assists
D. consists
【单选题】
Some of the meat came from Canada. How about________?___
A. another
B. the other
C. others
D. the rest
【单选题】
I have brought you ___ flowers for your birthday. ___
A. few
B. a few
C. little
D. a little
【单选题】
I have also experienced many adventures, but nothing that I have seen ___what you have described. ___
A. compares
B. relates
C. resembles
D. assembles
【单选题】
That young man has made so much noise that he ___ not have been allowed attend the concert. ___
A. could
B. must
C. would
D. should
【单选题】
“What is Mary doing at home?” “She is playing ____.”___
A. a piano
B. her piano
C. piano
D. the piano
【单选题】
I’m busy now ,ask him to see me ____ time.___
A. the other
B. some other
C. other
D. another
【单选题】
The child took a spoonful and tasted it carefully __________ it was hot.___
A. in case
B. provided
C. if
D. unless
【单选题】
The French pianist who had been praised very highly __________ to be a great disappointment. ___
A. turned off
B. turned up
C. turned out
D. turned down
【单选题】
“Shall I turn on the television?” – “No, I’d rather not __________ television tonight.”___
A. have watched
B. to watch
C. watch
D. for watching
【单选题】
They said that they had made up their minds to ____the task in spite of the extremely difficult conditions.___
A. carry on
B. carry off
C. carry away
D. carry forward