C语言理论上的机考选题部分
1、以下程序的输出为___D______。
#includestdio.h
void main ( ) )
{ int k=11;
printf(k=%d,k=%o,k=%x\\n ),k,k,k );
() ) ) ) )。
a ) k=11,k=12,k=11 B ) k=11,k=13,k=13
c ) k=11,k=013,k=0xb D ) k=11,k=13,k=b
2、以下选项中,不正确的赋值语句为__D______。
a ) t; b ) N1=(N2=) N3=0);
c ) k=i=j; d ) a=b c=1;
3、以下合法的c语言字符常数为______A____。
a ( ) t ) b ) a ) c ) 65 D ) a
4、公式: 10!=9的值为________D____。
a(trueb )非零值c ) 0 D ) 1
5、c语言提供的合法数据类型关键词为_____B____。
a ) Double B ) short C ) integer D ) Char
6 .将字符( char )型数据存储在微型计算机存储器中的存储格式为__D__。
a )反码b )补码c ) EBCDIC码d ) ASCII码
7、C语言程序的基本单位是_____C______。
a )程序行b )语句c )函数d )字符
8、假设int a=12,则在执行语句a=a-=a*a之后,a的值是____D____。
a ) 552 B ) 264 C ) 144 D )-264
9、执行以下程序的输出语句后,输出结果为____B__。
#includestdio.h
void main ( ) )
{int a;
printf(%d(n ),) a=3*5,a*4,a 5 );
() ) ) ) )。
a(65b ) 20 C ) 15 D ) 10
10、以下程序的输出为____B______。
#includestdio.h
void main ( ) )
{int x=023;
printf(%d(n ),-x );
() ) ) ) )。
a(17b ) 18 C ) 23 D ) 24
11、下一个程序的输出为_____C____。
#includestdio.h
void main ( ) )
{int x=10,y=3;
printf(%d(n ),y=x/y );
() ) ) ) )。
a ) 0 B ) 1 C ) 3 D )不确定的值
12 .字母a的ASCII代码是十进制的65,下一个程序的输出是_ _ _ _ _ _ a _ _ _ _。
#includestdio.h
void main ( ) )
{char ch1、ch2;
ch1=\’A\’ \’5\’-\’3\’;
ch2=\’A\’ \’6\’-\’3\’;
printf(\’%d,%c\\n \’,ch1,ch2 );
() ) ) ) )。
a ) 67,D B ) b,c ) c,d )不确定的值
13 .当要求在if之后的括号中表示a不等于0的关系时,正确表示该关系的公式是____D__。
a ) a0 B )! a(a=0d ) a
14、以下程序的输出结果为____D_____。
#includestdio.h
void main ( ) )
{ int x=10,y=10;
printf(%d%d(n ),x—-y );
() ) ) ) )。
a ) 10 10 B ) 9c )9 10 D ) 10 9
15、有以下定义:
int x=10,y=3,z;
句子
printf(%d(n ),z=) x%y,x/y );
的输出结果为_____D_____。
a(1b ) 0 C ) 4 D ) 3
16、使用c语言表示___A___来表示关系xyz。
a ( ( x=y ) ) y=z ) b ) ) x=y ) and ) y=z ) ) ) ) ) ) ) a ) x ) x ) x ) y ) z ) ) ) x ) x ) x ) x ) x ) x ) x ) 652
c ( ) x=y=z ) d ) ) x=y ) ) y=z ) ) ) ) )。
17、C语言中非空的基本数据类型包括____B____。
a )整数型、实型、逻辑型b )整数型、实型、字符型
c )整形、字符型、逻辑型
d )整数型、实数型、逻辑型、字符型
18、x和y都是int型变量,x=100,y=200,存在以下程序片段时:
printf(\’%d \’,) x,y );
上面的程序片段的输出结果是____A___。
a ) 200 B ) 100
c ) 100 200 D )输出格式不够,输出不确定的值
19、阅读以下步骤
#includestdio.h
void main ( ) )
{
char ch;
scanf(\’<;\’ 、ch );
printf(\’%c \’,ch );
() ) ) ) )。
从键盘输入的话
abc返回
程序的执行结果为__A_____。
a(ab ) B ) C )程序语法错误
20、阅读以下步骤
#includestdio.h
void main ( ) )
{
int i,j;
i=010;
j=9;
printf(\’%d,%d \’,i-j,i j );
() ) ) ) )。
程序的执行结果为____D____。
a ) 1,19b (-1,19c ) 1,17d )-1,17
21、阅读以下步骤
#includestdio.h
void main ( ) )
{
int i,j,m,n;
i=8; j=10;
m= i;
n=j;
printf(\’%d,%d,%d,%d”,%I,j,m,n );
() ) ) ) )。
的执行结果为______C____。
a ) 8、10、8、10b ) 9、11、8、10
c ) 9、11、9、10d ) 9、10、9、11
22、如果知道a=12,则式a=a-=a*=a的结果为_____A__。
a(0b ) 144 C ) 12 D )-264
23 .在定义了int a的情况下,表达式a=10,a 10,a的值是__B_。
a(20b ) 10 C ) 21 D ) 11
24、阅读以下步骤
#includestdio.h
void main ( ) )
{
int i,j;
scanf ( )=-),I,j );
printf(I=%d,j=%d\\n ),I,j );
() ) ) ) )。
如果通过键盘输入1234567回车,则程序执行结果为____D____。
a ) i=123,j=4567 B ) i=1234,j=567
c ) i=1,j=2 D ) i=123,j=45
25、下一个程序的输出结果为____D____。
#includestdio.h
void main ( ) )
{
int a=-1,b=4,k;
k=(a=0) ) b–=0);
printf(\’%d,%d,%d\\n \’,k,a,b );
() ) ) ) )。
a ) 1,1,2b ) 1,0,3c ) 0,1,2d ) 0,0,3
26、下一个程序的输出结果是____A____。
#includestdio.h
void main ( ) )
{
int a=5,b=3;
float x=3.14,y=6.5;
printf(\’%d,%d\\n \’,a b!=a-b,x=(y-=6.1 );
() ) ) ) )。
a ) 1,0b ) 0,1c ) 1,1d ) 0,0
27、在执行下一块之后,输出结果是____A____。
int a;
int b=65536;
a=b;
printf(%d(n ),a );
a ) 65536b(0c )-1 D ) 1
28、如有以下定义和句子:
int a=010,b=0x10,c=10;
printf(\’%d,%d,%d\\n ),a,b,c );
输出结果是____B_____。
a ) 10、10、10b ) 8、16、10c ) 8、10、10d ) 8、8、10
29、已知双精度型变量x=2.5、y=4.7、整数变量a=7,
表达式xa%3*(int ) x y ) %2/4的值是_____B____。
a ) 2.4 B ) 2.5 C ) 2.75 D ) 0
30、如果x和y定义为整数变量,则x=2; 则式y=2.75 x/2的值成为____C____。
a ) 5.5 B ) 5 C ) 3 D ) 4.0
31、以下程序的输出结果为____D____。
#includestdio.h
void main ( ) )
{
int a=12,b=12;
printf(\’%d,%d(n ),–a,b );
() ) ) ) )。
a ) 10,10b ) 12,12c ) 11,10d ) 11,13
32、有以下案文: int x=10; 如果x=3x%(3),则x的值为. ____A_____。
a(14b ) 15 C ) 11 D ) 12
33、在d为双精度型变量的情况下,式d=1,d 5,d的值为_____D__。
a(1b ) 6.0 C ) 2.0 D ) 1.0
34、式5!=3的值为____D____。
a(TB )非零值c ) 0 D ) 1
35、在定义了int a=12、n=5的情况下,在运算式a%=(n%2)后,计算a的值______A____。
a(0b ) 1 C ) 12 D ) 6
36、如果存在定义int x=3、y=2和float a=2.5、b=3.5,则公式: ( x y ) %2(int ) %2(int ) int ) b的值为__D__。
a(0b ) 2 C ) 1.5 D ) 1
37、在c语言中,以下描述不正确的是_____A____。
a )在c程序中,无论是整数还是实数,都可以准确无误地表示出来
b )在c程序中,变量名称表示内存中的位置
c )静态变量的生存期与整个程序的生存期相同
d ) C语言变量必须先定义再引用
38、c语言变量名只能由字母、数字和下划线三种字符组成,且第一个字符____C____。
a )必须是文字
b )必须是下划线
c )必须是文字或下划线
d )可以是字母、数字、下划线中任一种
39、有说明。 char w; int x; float y; 双z; 表达式: w*x z-y值的数据类型为___D____。
a ) float B ) char C ) int D ) double
40、一种C语言的执行是因为_____A______。
a )本程序的主函数开始,直到本程序的主函数结束
b )本程序的第一个函数开始,直到本程序的最后一个函数结束
c )本程序的主函数开始,直到本程序的最后一个函数结束
d )本程序的第一个函数开始,直到本程序的主函数结束
41、将a作为整数变量,不能正确表达数学关系10a15的c语言表达为____A____。
a ) 10a15 B ) a==11||a==12||a==13||a==14
c ) a10a15 D )! ( a=10 )! ( a=15 ) )。
42、执行下一个程序后的输出结果为_____C____。
#include stdio.h
void main ( ) )
{ int a=5,b=60,c;
是if(ab )
{c=a*b; printf(%d*%d=%d\\n ),b,a,c ); () ) ) ) )。
else
{c=b/a; printf(\’%d/%d=%d\\n \’,b,a,c ); () ) ) ) )。
() ) ) ) )。
a(60/5=12b ) 300 C ) 60*5=300 D ) 12
43、如果c是字符类型变量,则确定c是否不能用于空格( ____A____.(假设空格ASCII代码为32 ) ) )。
a ) if ( c=\’ 32 \’ ( b ) if ) c==32 ) ) ) ) ) )。
c ) if(c==\’\\40 \’ ) d ) if ) c=\’ \’ )
44、执行下一个程序时,从键盘输入“3,5cr”,程序输出结果为____D____。
#include stdio.h
void main ( ) )
{
int x,y;
scanf(\’%d,%d )、x和y );
if(x==y ) )。
printf(x==y );
ELSEif(xy )。
打印( xy );
else
打印( xy );
() ) ) ) )。
a ) 35 B ) 53 C ) xy D ) xy
45、执行下一个程序时,如果通过键盘输入的数据是\’ 6,5,7cr \’,则输出结果为____C___。
#include stdio.h
void main ( ) )
{ int a、b、c;
scanf(\’%d,%d,%d \’,a,b,c );
是if(ab )
是国际奥委会
printf(%d(n ),a );
else
printf(%d(n ),c );
else
是国际奥委会
printf(%d(n ),b );
else
printf(%d(n ),c );
() ) ) ) )。
a ) 5 B ) 6 C ) 7 D )不定值
46、执行下一个程序时,从键盘输入“2CR”,程序执行结果为____A____。
#include stdio.h
void main ( ) )
{ int k; char cp;
cp=getchar (;
if(CP=\’0\’CP=\’9\’ )
k=cp-\’0\’;
ELSEif(CP=\’a\’CP=\’f \’ )
k=cp-\’a\’ 10;
else k=cp-\’A\’ 10;
打印( % d ( n ),k );
() ) ) ) )。
a ) 2 B ) 4 C ) 1 D ) 10
47、运行下一个程序时,从键盘输入“2.0CR”,输出结果为___B_____。
#include stdio.h
void main ( ) )
{ float a,b;
scanf(\’%f \’,a );
if(a0.0 ) b=0.0;
elseif ( ) ( a0.5 ) ) a!=2.0 ) ) b=1.0/(a2.0 );
elseif(a10.0 ) b=1.0/2;
else b=10.0;
printf(%f(n ),b );
() ) ) ) )。
a ) 0.000000 B ) 0.500000
c ) 1.000000 D ) 0.250000
48、运行下一个程序后,运行结果为____A____。
#include stdio.h
void main ( ) )
{ int x=41,y=1;
if(x%3==0x%7==0) )
{ y=x; printf(y=%d(n ),y ); () ) ) ) )。
else
{y=x; printf(y=%d ),y ); () ) ) ) )。
() ) ) ) )。
a ) y=41 B ) y=43 C ) y=42 D ) y=1
49、运行下一个程序时,从键盘输入\’ 12、34、9cr \’,输出结果为___A___。
#include stdio.h
void main ( ) )
{ int x,y,z;
scanf(\’%d,%d,%d \’,x,y,z );
是if(xy )
if(yz ) printf(\’%d\\n \’,z );
ELSEprintf(\’%d\\n \’,y );
ELSEif(xz ) printf ) \’ %d\\n \’,z );
ELSEprintf(\’%d\\n \’,x );
() ) ) ) )。
a ) 34 B ) 12 C )9 D )不确定的值
50、运行下一个程序时,如果通过键盘输入字符h,则输出结果为_____C___。
#include stdio.h
void main ( ) )
{ char ch;
ch=getchar (;
sitch(ch ) )。
{case\’h\’:printf(Hello! \\n \’;
case \’ g \’ :打印( good morning! \\n \’;
dfault:printf(bye_bye! \\n \’;
() ) ) ) )。
() ) ) ) )。
A )你好! B )你好!
好早晨!
C )你好! D )你好!
好早晨! Bye_Bye!
Bye_Bye!
51、执行下一块后的输出结果为_____A____。
int x=1,y=1,z=1;
x=y=z;
printf(\’%d\\n \’,xy? y:x;
a(3b ) 2 C ) 1 D ) 4
52、假设ch是char类型变量,值为\’ a \’,则表达式ch=(ch=\’a\’ch=\’z \’? ch 32:ch的值是__B___。
a ) Z B ) a C ) z D ) a
53、下一个程序的输出结果是____C____。
#include stdio.h
void main ( ) )
{ int x=8,y=-7,z=9;
是if(xy )
if(y0 ) z=0;
else z-=1;
printf(%d(n ),z );
() ) ) ) )。
a ) 8 B ) 1 C ) 9 D ) 0
54、执行下一个程序时,从键盘输入“5 CR”,程序输出结果为_____B___。
#include stdio.h
void main ( ) )
{ int a;
scanf(\’%d \’,a );
if(a5 ) printf(\’%d\\n \’,a );
ELSEprintf(\’%d\\n \’,a– );
() ) ) ) )。
a(7b ) 6 C ) 5 D ) 4
55、执行下一个程序时,从键盘输入“3,4cr”,程序输出结果为____B___。
#include stdio.h
void main ( ) )
{ int a、b、s;
scanf(\’%d,%d ),a,b );
s=a;
if(sb ) s=b;
s=s*s;
printf(%d(n ),s );
() ) ) ) )。
a(14b ) 16 C ) 18 D ) 20
56、以下程序的执行结果为_____D____。
#include stdio.h
void main ( ) )
{ int x=0,y=1,z=0;
if(x=z=y ) )
x=3;
printf(\’%d,%d\\n ),x,z );
() ) ) ) )。
a ) 3,0b ) 0,0c ) 0,1d ) 3,1
57、假设等级与分数存在以下对应关系:
等级: a分数: 85~100
等级: b点数: 60~84
等级: c点数: 60以下
如果类别grade输出对应的得分区间,则能够完成该功能的片段为____D____。
a )交换机(网格)
{
case\’a\’:printf(85–100(n );
case\’b\’:printf(60–84(n );
case\’c\’:printf(\’60以下( n );
default:printf ( \’级别错误! \\n \’;
() ) ) ) )。
b )交换机( grade )
{
case\’a\’:printf(85–100(n ); 黑;
case\’b\’:printf(60–84(n );
case\’c\’:printf(\’60以下( n );
default:printf ( \’级别错误! \\n \’;
() ) ) ) )。
c )交换机( grade )
{
case\’a\’:printf(85–100(n ); 黑;
case\’b\’:printf(60–84(n ); 黑;
case\’c\’:printf(\’60以下( n );
default:printf ( \’级别错误! \\n \’;
() ) ) ) )。
d )交换机(网格)
{
case\’a\’:printf(85–100(n ); 黑;
case\’b\’:printf(60–84(n ); 黑;
case\’c\’:printf(\’60以下( n ); 黑;
default:printf ( \’级别错误! \\n \’;
() ) ) ) )。
58、可以完成以下函数计算的块为__B____。
$-1×0
y= 0 x=0
(1×0
a ) y=1; b ) if(x=0) ) ) ) ) )。
if(x!=0) if(x0 ) y=1;
if(x0 ) y=1; else y=0;
else y=0; else y=-1;
c ) y=0; d ) y=-1;
if(x=0) if ) x0 ) y=1;
if(x0 ) y=1; else y=0;
else y=-1;
59、有以下步骤
#include stdio.h
void main ( ) )
{ float x=5.0,y;
if(x0.0 ) y=0.0;
elseif(x10.0 ) y=1.0/x;
else y=1.0;
printf(%f(n ),y );
() ) ) ) )。
该程序的输出结果是____C_____。
a ) 0.000000 B ) 0.50000
c ) 0.200000 D ) 1.000000
60、以下程序的执行结果为___B_____。
#include stdio.h
void main ( ) )
{ int x=1,y=0;
是交换机( x )
{
case 1:
开关( y ) )。
{
case0:打印( first ( n ); 黑;
case1:打印( second ( n ); 黑;
() ) ) ) )。
case2:printf(third(n );
() ) ) ) )。
() ) ) ) )。
a )第一次b )第一次
second third
c ) first D ) second
third
61、以下程序的执行结果为____A____。
#include stdio.h
void main ( ) )
{ int a,b,c,d,x;
a=c=0;
b=1;
d=20;
if(a ) d=d-10;
else if (! b )
if (! c ) x=15;
else x=25;
printf(d=%d(n ),d );
() ) ) ) )。
a ) d=20 B ) d=10 C ) d=15 D ) 25
62、这些步骤包括:
#include stdio.h
void main ( ) )
{ int a=2,b=-1,c=2;
是if(ab )
if(B0 ) c=0;
else c;
printf(%d(n ),c );
() ) ) ) )。
该程序的输出结果是___C_____。
a(0b ) 1 C ) 2 D ) 3
63、执行下一个程序后的输出结果是____B____。
#include stdio.h
void main ( ) )
{ int x,y=1,z;
if ( ) z=y )0) x=4;
ELSEif(y==0) x=5;
else x=6;
printf(\’%d,%d\\n ),x,y );
() ) ) ) )。
a ) 4,1b ) 6,1c ) 5,0d )错误消息
64、该程序包括:
#include stdio.h
void main ( ) )
{ int x=1,a=0,b=0;
是交换机( x )
{
case 0: b;
case 1: a;
case 2: a; b;
() ) ) ) )。
printf(a=%d,b=%d\\n ),a,b );
() ) ) ) )。
该程序的输出结果是______A____。
a ) a=2,b=1 B ) a=1,b=1 C ) a=1,b=0 D ) a=2,b=2
65、下一个程序的输出结果是____C_____。
#include stdio.h
void main ( ) )
{ int a=-1,b=1,k;
if ( ) A0 ) ) b–=0) )
printf(%d%d(n ),a,b );
else
printf(%d%d(n ),b,a );
() ) ) ) )。
a(-1b )0 1 C ) 1d ) 0
假设66,w,x,y,z,m都是int型变量,有以下块。
w=1; x=2; y=3; z=4;
m=(wx )? w:x; m=(my )? m:y; m=(mz? ( m ) z;
在这个分段被执行之后,m的值是____D_____。
a(4b ) 3 C ) 2 D ) 1
67、以下程序的输出结果为___D______。
main ( ) )
{ int a=100;
if(a100 ) printf(\’%d\\n \’,a100 );
ELSEprintf(\’%d\\n \’,a=100 );
() ) ) ) )。
a ) a=100b(100c ) 0 D ) 1
68、运行以下程序并从键盘输入9,则输出结果为. ______B________。
#include stdio.h
void main ( ) )
{int n;
scanf(\’%d \’,n );
if(n10 ) printf(\’%d\\n \’,n );
ELSEprintf(\’%d\\n \’,n– ); () ) ) ) )。
a(11b ) 10 C ) 9 D ) 8
69、以下程序的输出结果为_____D_____。
#include stdio.h
void main ( ) )
{ int m=4;
if(m5 ) printf(\’%d\\n \’,m– );
ELSEprintf(\’%d\\n \’,–m );
() ) ) ) )。
a(7b ) 6 C ) 5 D ) 4
70、运行以下程序并从键盘输入5,输出结果为。
#include stdio.h
void main ( ) )
{int x;
scanf(\’%d \’,x );
if(x5 ) printf(\’%d\\n \’,x );
ELSEprintf(\’%d\\n \’,x– );
() ) ) ) )。
a(7b ) 6 C ) 5 D ) 4
71、以下模块的执行结果为____A____。
int x=1,y=1,z=-1;
x=y=z;
printf(\’%d\\n \’,xy? y:x;
a ) 1 B ) 2 C ) 4 D )不确定的值
72、有以下步骤
#include stdio.h
void main ( ) )
{ int a,b,c=246;
a=c/100%9;
b=(-1 ) )-1 );
printf(\’%d,%d\\n ),a,b );
() ) ) ) )。
输出结果为____A____。
a ) 2,1b ) 3,2c ) 4,3d ) 2,-1
73、执行下一个程序时,如果从键盘输入数据是\’ 123 \’,
输出结果为___C____。
#include \’stdio.h \’
void main ( ) )
{ int num,I,j,k,place;
scanf(\’%d \’,num );
if (数字99 ) )。
place=3;
ELSEif(num9) )。
place=2;
else
place=1;
i=num/100;
j=(num-I*100 )/10;
k=(num-I*100-j*10 );
是开关( place )
{case3:printf(\’%d%d%d\\n \’,k,j,I );
黑;
case2:printf(\’%d%d\\n \’,k,j );
黑;
case1:printf(\’%d\\n \’,k );
() ) ) ) )。
() ) ) ) )。
a ) 123 B ) 1、2、3c ) 321 D ) 3、2、1
74、运行以下程序后的输出结果为___D____。
#include stdio.h
void main ( ) )
{ int k=4,a=3,b=2,c=1;
printf(\’%d\\n \’,ka? k:cb? c:a;
() ) ) ) )。
a(4b ) 3 C ) 2 D ) 1
75、以下条件式中与条件式x完全等价的是____B___。
a ( ) x==0) b ) ) x!=0) c ) ( x==1) d ) ) x!=1)
76、运行下一个程序时,如果在变量a中输入15,将输出___A___。
#include stdio.h
void main ( ) )
{ int a,b;
scanf(\’%d \’,a );
b=a15? ( A10 ) A-10;
printf(%d(n ),b );
() ) ) ) )。
a ) 5 B ) 25 C ) 15 D ) 10
77、在执行下一个程序后,输出为___D___。
#include stdio.h
void main ( ) )
{ int k=-3;
if(k=0) printf(\’***\\n );
ELSEprintf(\’###\\n \’ ) ) ) )。
() ) ) ) )。
a ) ###
b(****
c ) ####****
d )有语法错误无法编译
78、运行下一个程序的结果是____C____。
#include stdio.h
void main ( ) )
{ int a=5,b=0,c=0;
if(a=ab ) printf(\’***\\n );
ELSEprintf(\’###\\n \’ );
() ) ) ) )。
a )有语法错误无法编译
b )可以编译,但不能连接
c )输出****
d )输出###
79、为了避免嵌套if-else语句的二义性,c语言规定else总是与___C___成对关系。
a )缩进位置相同的if
b )之前未配对的if
c )之前未配对的最近if
d )同一行的if
80、x、y、z、t均为int型变量,执行以下语句后,t的值为____C_____。
x=y=z=1;
t= x || y z;
a )不定值b ) 4 C ) 1 D ) 0
81、以下方框____C______。
x=-1;
do
{
x=x*x;
} while (! x;
a )执行两次死循环b )循环
c )执行一次循环d )存在语法错误
82、下一块的描述是正确的___B____。
int x=0,s=0;
while (! x!=0) s= x;
printf(\’%d”,s );
a )执行程序段并输出0
b )执行部分输出1
c )块中的控制表达式不正确
d )段循环无数次
83、下一块的输出结果是____C____。
x=3;
do { y=x–;
if (! y ( ) printf(\’* ); 连续; () ) ) ) )。
printf(\’# \’;
}while(x=2);
a(##b ) #*c )输出死循环d )错误信息
84、下一个程序的执行结果是____B____。
#includestdio.h
void main ( ) )
{ int a=1,b=10;
do
{ b-=a; a;
( while(B–0);
printf(\’%d,%d\\n ),a,b );
() ) ) ) )。
a ) 3,11b ) 2,8c ) 1,-1 D ) 4,9
85、下一块的执行结果为____B______。
int n=0;
wile(n=2) )。
printf(\’%d \’,n );
a(012b ) 123 C ) 234 D )错误信息
86、下一块的执行结果为___D_____。
int x=0,y=0;
while(x15 ) y,x= y;
printf(\’%d,%d \’,y,x );
a ( 20,7b ) 6,12c ) 20,8d ) 8,20
87、下一个程序的执行结果是___B_____。
#includestdio.h
void main ( ) )
{ int s=0,i=1;
为while(s=10 )
{ s=s i*i;
I;
() ) ) ) )。
printf(\’%d \’,–i );
() ) ) ) )。
a ) 4 B ) 3 C ) 5 D ) 6
88、函数pi的功能根据以下近似式求出值。 _ _ _ _ c _ _ _ _ _ _ _ u
( (*)/6=11/(2*2)1/(3*3) .1/(3*3 ) ) ) ) ) ) ) ) ) ) ) ) ) 65
请填写空栏,完成求的功能。
#include math.h
void main ( ) )
{ double s=0.0; int i,n;
scanf(\’%LD \’,n );
for(I=1; i=n; I )
s=s _______;
s=(sqrt )6*s );
printf(s=%e ),s );
() ) ) ) )。
a(1/I*Ib ) 1.0/i*i C ) 1.0/( I ) I ) d ) 1.0/(n*n ) ) ) ) ) ) ) )
89、下一块的执行结果是____B____。
for(x=10; x3; x—-)
{if(x%3) x—-;
-x; -x;
printf(\’%d \’,x );
() ) ) ) )。
a(6) 3b )7) c )6) 2d )7) 3
90、下一个程序的执行结果为____D_____。
#includestdio.h
void main ( ) )
{ int a,b;
a=-1;
b=0;
do {
a;
a;
b=a;
( while ) A9;
printf(%d(n ),b );
() ) ) ) )。
>A) 34 B) 24 C) 26 D) 25
91、下面程序段的运行结果是_____D______.
for(i=1;i<=5;)
printf(\”%d\”,i);
i++;
A) 12345 B) 1234 C) 15 D) 无限循环
92、下面程序的输出结果是_____B_____.
#include<stdio.h>
void main( )
{ int n=4;
while (n–) printf(\”%d \”,n–);
}
A) 2 0 B) 3 1 C) 3 2 1 D) 2 1 0
93、以下程序运行后的输出结果是___D_____.
#include<stdio.h>
void main()
{ int i=10,j=0;
do
{ j=j+1; i–;
}while(i>2);
printf(\”%d\\n\”,j);
}
A) 50 B) 52 C) 51 D) 8
94、以下函数的功能是:求x的y次方,请填空.____C______
#include<stdio.h>
void main()
{ int i,x,y;
double z;
scanf(\”%d %d\”,&x,&y);
for(i=1,z=x;i<y;i++)
z=z*______ ;
printf(\”x^y=%e\\n\”,z);
}
A) i++ B) x++ C) x D) i
95、有如下程序
#include<stdio.h>
void main()
{ int x=23;
do
{ printf(\”%d\”,x–);
}while(!x);
}
该程序的执行结果是___B____
A) 321 B) 23
C) 不输出任何内容 D) 陷入死循环
96、以下程序段的执行结果是____C____.
int i,j,m=0;
for(i=1;i<=15;i+=4)
for(j=3;j<=19;j+=4)
m++;
printf(\”%d\\n\”,m);
A) 12 B) 15 C) 20 D) 25
97、下面程序的输出结果是______A_____.
#include<stdio.h>
void main( )
{ int i;
for(i=1;i<6;i++)
{ if (i%2!=0) {printf(\”#\”);continue;}
printf(\”*\”);
}
printf(\”\\n\”);
}
A) #*#*# B) ##### C) ***** D) *#*#*
98、下面程序的输出结果是____D______.
#include<stdio.h>
void main( )
{ int x=10,y=10,i;
for(i=0;x>8;y=++i)
printf(\”%d %d \”,x–,y);
}
A) 10 1 9 2 B) 9 8 7 6
C) 10 9 9 0 D) 10 10 9 1
99、执行以下程序后,输出的结果是_____D_____.
#include<stdio.h>
void main( )
{ int y=10;
do {y–;}
while (–y);
printf(\”%d\\n\”,y–);
}
A) -1 B) 1 C) 8 D) 0
100、有如下程序
#include<stdio.h>
void main( )
{ int n=9;
while(n>6) {n–;printf(\”%d\”,n);}
}
该程序段的输出结果是_____B_____.
A) 987 B) 876 C) 8765 D) 9876
101、有如下程序
#include<stdio.h>
void main( )
{ int i,sum=0;
for(i=1;i<=3;sum++) sum+=i;
printf(\”%d\\n\”,sum);
}
该程序的执行结果是______C_____.
A) 6 B) 3 C) 死循环 D) 0
102、以下循环体的执行次数是___D____
#include<stdio.h>
void main( )
{ int i,j;
for(i=0,j=1; i<=j+1; i+=2, j–)
printf(\”%d \\n\”,i);
}
A) 3 B) 2 C) 1 D) 0
103、在执行以下程序时,如果从键盘上输入:ABCdef<回车>,则输出为____B____.
#include <stdio.h>
void main( )
{ char ch;
while ((ch=getchar( ))!=\’\\n\’)
{ if (ch>=\’A\’ && ch<=\’Z\’) ch=ch+32;
else if (ch>=\’a\’ && ch<\’z\’) ch=ch-32;
printf(\”%c\”,ch);
}
printf(\”\\n\”);
}
A) ABCdef B) abcDEF C) abc D) DEF
104、下面程序的输出结果是____D______.
main( )
{
int i,k=0, a=0, b=0;
for(i=1;i<=4;i++)
{
k++;
if (k%2==0) {a=a+k; continue;}
b=b+k;
a=a+k;
}
printf(\”k=%d a=%d b=%d\\n\”,k,a,b);
}
A) k=5 a=10 b=4 B) k=3 a=6 b=4
C) k=4 a=10 b=3 D) k=4 a=10 b=4
105、执行下面程序段后,k的值是____D_____.
int i,j,k;
for(i=0,j=10;i<j;i++,j–)
k=i+j;
A) 9 B) 11 C) 8 D) 10
106、下面程序是计算n个数的平均值,请填空.____B___
#include<stdio.h>
void main( )
{ int i,n;
float x,avg=0.0;
scanf(\”%d\”,&n);
for(i=0;i<n;i++)
{ scanf(\”%f\”,&x);
avg=avg+______; }
avg=________;
printf(\”avg=%f\\n\”,avg);
}
A) i B) x C) x D) i
avg/i avg/n avg/x avg/n
107、以下程序的功能是:从键盘上输入若干个学生的成绩, 统计并输出最高成绩和最低成绩,当输入负数时结束输入。请填空。___D_____
#include<stdio.h>
void main( )
{ float x,amax,amin;
scanf(\”%f\”,&x);
amax=x;
amin=x;
while (________ )
{ if (x>amax) amax=x;
if (______) amin=x;
scanf(\”%f\”,&x);
}
printf(\”\\namax=%f\\namin=%f\\n\”,amax,amin);
}
A) x<=0 B) x>0 C) x>0 D) x>=0
x>amin x<=amin x>amin x<amin
108、阅读以下程序,程序运行后的输出结果是__B____.
#include<stdio.h>
void main( )
{ int x;
for(x=5;x>0;x–)
if (x–<5) printf(\”%d,\”,x);
else printf(\”%d,\”,x++); }
A) 4,3,2 B) 4,3,1, C) 5,4,2 D) 5,3,1,
109、以下程序段的输出结果是____C____.
int k,n,m;
n=10;m=1;k=1;
while (k<=n) {m*=2;k+=4;}
printf(\”%d\\n\”,m);
A) 4 B) 16 C) 8 D) 32
110、下面程序的输出结果是____B_____.
#include<stdio.h>
void main( )
{int y=9;
for(;y>0;y–)
{if(y%3==0)
{printf(\”%d\”,–y);
continue;}
}
}
A) 741 B) 852 C) 963 D) 875421
111、下面程序的输出结果是____B____.
#include<stdio.h>
void main( )
{int x=3;
do {
printf(\”%d \”,x-=2);
}while(!(–x));
}
A) 1 B) 1 -2 C) 3 0 D)是死循环
112、定义如下变量:
int n=10;
则下列循环的输出结果是___B____.
while(n>7)
{ n–; printf(\”%d\\n\”,n);}
A) 10 B) 9 C) 10 D) 9
9 8 9 8
8 7 8 7
7 6
113、语句while(!e);中的条件 !e 等价于____A____.
A) e==0 B) e!=1 C) e!=0 D) ~e
114、以下叙述正确的是_____B____.
A) continue语句的作用是结束整个循环的执行
B) 只能在循环体内和switch语句体内使用break语句
C) 在循环体内使用break语句或continue语句的作用相同
D) 从多层循环嵌套中退出时,只能使用goto语句
115、在下列选项中,没有构成死循环的程序段是___D_.
A) int i=100; B) for( ; ; );
while (1)
{ i=i%100+1;
if (i>100) break;
}
C) int k=1000; D) int s=36;
do {++k;} while (k>=1000); while (s) –s;
116、下面程序的输出结果是____A_____.
#include<stdio.h>
void main( )
{ int i;
for(i=1;i<=5;i++)
{ if (i%2) printf(\”*\”);
else continue;
printf(\”#\”);
}
printf(\”$\\n\”);
}
A) *#*#*#$ B) #*#*#*$ C) #*#*$ D) *#*#$
117、下面程序段中,循环体的执行次数是____C_____.
int a=10,b=0;
do {b+=2;a-=2+b;} while(a>=0);
A) 4 B) 5 C) 3 D) 2
118、若i为整型变量,则以下循环语句的循环次数是_B_.
for(i=2;i==0;)
printf(\”%d\”,i–);
A) 无限次 B) 0次 C) 1次 D) 2次
119、C语言中while 和do-while 循环的主要区别是.__A__
A) do-while的循环体至少无条件执行一次
B) while 的循环控制条件比do-while 的循环控制条件严格
C) do-while 允许从外部转到循环体内
D) do-while 的循环体不能是复合语句
120、对于for(表达式1;;表达式3)可理解为______B____.
A) for(表达式1;0;表达式3)
B) for(表达式1;1;表达式3)
C) for(表达式1;表达式1;表达式3)
D) for(表达式1;表达式3;表达式3)
121、合法的数组定义是___D_____.
A) int a[6]={\”string\”}; B) int a[5]={0,1,2,3,4,5};
C) char a={\”string\”}; D) char a[]={0,1,2,3,4,5};
122、要求下面的程序运行后,显示如下结果:
2 10 4 6
1 5 2 3
2 4 7 8
5 1 3 2
则程序中的划线处应填入___B_____.
#include <stdio.h>
void main( )
{ int a[4][4]={ ________ };
int i,j;
for(i=0;i<4;i++)
{for(j=0;j<4;j++) printf(\”%4d\”,a[i][j]);
printf(\”\\n\”); }
}
A) {1,5,2,3},{2,4,7,8},{5,1,3,2}
B) {2,10,4,6},{1,5,2,3},{2,4,7,8},{5,1,3,2}
C) {5,1,3,2},{2,4,7,8},{1,5,2,3}
D) {2,1,2,5},{10,5,4,1},{4,2,7,3},{6,3,8,2}
123、给出以下定义:
char x[ ]=\”abcdefg\”;
char y[ ]={\’a\’,\’b\’,\’c\’,\’d\’,\’e\’,\’f\’,\’g\’};
则正确的叙述为 ___C_____.
A) 数组x和数组y等价
B) 数组x和数组y的长度相同
C) 数组x的长度大于数组y的长度
D) 数组x的长度小于数组y的长度
124、定义如下变量和数组:
int i;
int x[4][4]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
则下面语句的输出结果是___C_____.
for(i=0;i<4;i++) printf(\”%3d\”,x[i][3-i]);
A) 1 5 9 13 B) 1 6 11 16
C) 4 7 10 13 D) 4 8 12 16
125、下面程序输出的结果是____D____.
#include <stdio.h>
void main( )
{ int i,j,x=0;
static int a[6]={1,2,3,4,5,6};
for(i=0,j=1;i<5;++i,j++) x+=a[i]*a[j];
printf(\”%d\\n\”,x);
}
A) 数组a中首尾的对应元素的乘积
B) 数组a中首尾的对应元素的乘积之和
C) 数组a中相邻各元素的乘积
D) 数组a中相邻各元素的乘积之和
126、若希望下面的程序运行后输出45,程序空白处的正确选择是___C_____.
#include <stdio.h>
void main( )
{ int i,j=10,a[ ]={1,3,5,7,9,11,13,15};
for( ____________ )
j+=a[i];
printf(\”%d\\n\”,j);
}
A) i=5;i>1;i– B) i=0;i<7;++i
C) i=5;i>=1;–i D) i=2;i<6;++i
127、若有以下说明:
char s1[ ]={\”tree\”},s2[]={\”flower\”}; ,
则以下对数组元素或数组的输出语句中,正确的是__C___.
A) printf(\”%s%s\”,s1[5],s2[7]);
B) printf(\”%c%c\”,s1,s2);
C) puts(s1);puts(s2); D) puts(s1,s2);
128、下列一维数组初始化语句中,正确且与语句float a[ ]={0,3,8,0,9};等价的是_____D___.
A) float a[6]={0,3,8,0,9}; B) float a[4]={0,3,8,0,9};
C) float a[7]={0,3,8,0,9}; D) float a[5]={0,3,8,0,9};
129、运行下面程序段的输出结果是___A_____.
char s1[10]={\’S\’,\’e\’,\’t\’,\’\\0\’,\’u\’,\’p\’,\’\\0\’};
printf(\”%s\”,s1);
A) Set B) Setup C) Set up D) \’S\’\’e\’\’t\’
130、以下程序段的输出结果是____B____.
char s[ ]=\”an apple\”;
printf(\”%d\\n\”,strlen(s));
A) 7 B) 8 C) 9 D) 10
131、若有说明:char c[10]={\’E\’,\’a\’,\’s\’,\’t\’,\’\\0\’};,则下述说法中正确的是_____D_____.
A) c[7]不可引用 B) c[6]可引用,但值不确定
C) c[4]不可引用 D) c[4]可引用,其值为空字符
132、下列初始化语句中,正确且与语句
char c[ ]=\”string\”;等价的是____C____.
A) char c[ ]={\’s\’,\’t\’,\’r\’,\’i\’,\’n\’,\’g\’};
B) char c[ ]=\’string\’;
C) char c[7]={\’s\’,\’t\’,\’r\’,\’i\’,\’n\’,\’g\’,\’\\0\’};
D) char c[7]={\’string\’};
133、若有说明char c[7]={\’s\’,\’t\’,\’r\’,\’i\’,\’n\’,\’g\’};则对元素的非法引用是____C____.
A) c[0] B) c[9-6] C) c[4*2] D) c[2*3]
134、如有说明:char s1[5],s2[7]; ,要给数组s1和s2整体赋值,下列语句中正确的是____C____.
A) s1=getchar(); s2=getchar();
B) scanf(\”%s%s\”,s1,s2);
C) scanf(\”%c%c\”,s1,s2);
D) gets(s1,s2);
135、下列一组初始化语句中,正确的是___B_____.
A) int a[8]={ }; B) int a[9]={0,7,0,4,8};
C) int a[5]={9,5,7,4,0,2}; D) int a[7]=7*6;
136、以下程序输出的结果是____D_____.
#include <stdio.h>
void main( )
{ char str[ ]=\”1a2b3c\”; int i;
for(i=0;str[i]!=\’\\0\’;i++)
if(str[i]>=\’0\’&&str[i]<=\’9\’) printf(\”%c\”,str[i]);
printf(\”\\n\”);
}
A) 123456789 B) 1a2b3c C) abc D) 123
137、以下程序输出的结果是___C_____.
#include <stdio.h>
void main( )
{ int a[ ]={5,4,3,2,1},i,j;
long s=0;
for(i=0;i<5;i++) s=s*10+a[i];
printf(\”s=%ld\\n\”,s);
}
A) s=12345 B) s=5 4 3 2 1
C) s=54321 D) 以上都不对
138、以下程序输出的结果是____A____.
#include <stdio.h>
void main( )
{ int a[ ]={1,2,3,4,5},i,j,s=0;
for(i=0;i<5;i++) s=s*10+a[i];
printf(\”s=%d\\n\”,s);
}
A) s=12345 B) s=1 2 3 4 5
C) s=54321 D) s=5 4 3 2 1
139、在定义int a[5][6];后,数组a中的第10个元素是.____C____
A) a[2][5] B) a[2][4] C) a[1][3] D) a[1][5]
140、当接受用户输入的含有空格的字符串时,应使用____A____函数.
A) gets( ) B) getchar( ) C) scanf( ) D) printf( )
141、以下程序执行时输入Language Programming<回车>,输出结果是____D____.
#include <stdio.h>
void main( )
{ char str[30];
gets(str);
printf(\”str=%s\\n\”,str);
}
A) Language Programming B) Language
C) str=Language D) str=Language Programming
142、以下一维数组a的正确定义是___D_____ .
A) int a(10); B) int n=10,a[n];
C) int n; D) #define SIZE 10
scanf(\”%d\”,&n); int a[SIZE];
int a[n];
143、以下对二维数组a进行正确初始化的是__B_____.
A) int a[2][3]={ {1,2},{3,4},{5,6} };
B) int a[ ][3]={1,2,3,4,5,6 };
C) int a[2][ ]={1,2,3,4,5,6};
D) int a[2][ ]={ { 1,2},{3,4}};
144、以下关于数组的描述正确的是____C______.
A) 数组的大小是固定的,但可以有不同类型的数组元素。
B) 数组的大小是可变的,但所有数组元素的类型必须相同。
C) 数组的大小是固定的,所有数组元素的类型必须相同。
D) 数组的大小是可变的,可以有不同类型的数组元素。
145、以下程序的输出结果是____B____.
#include<stdio.h>
void main()
{ int a[4][4]={{1,3,5,},{2,4,6},{3,5,7}};
printf(\”%d%d%d%d\\n\”,a[0][0],a[1][1],a[2][2],a[3][3]);
}
A) 0650 B) 1470 C) 5430 D) 输出值不定
146、以下程序的输出结果是___A_____.
#include <stdio.h>
void main()
{ int a[4][4]={{1,3,5,},{2,4,6},{3,5,7}};
printf(\”%d%d%d%d\\n\”,a[0][3],a[1][2],a[2][1],a[3][0]);
}
A) 0650 B) 1470 C) 5430 D) 输出值不定
147、已知short int类型变量占用两个字节,若有定义:short int x[10]={0,2,4}; ,则数组x在内存中所占字节数是____D____.
A) 3 B) 6 C) 10 D) 20
148、在定义int a[5][4]; 之后,对a的引用正确的是.____C____
A) a[2][4] B) a[1,3] C) a[4][3] D) a[5][0]
149、以下数组定义中不正确的是____D____.
A) int a[2][3];
B) int b[][3]={0,1,2,3};
C) int c[100][100]={0};
D) int a[3][]={{1,2},{1,2,3},{1,2,3,4}};
150、在执行语句: int a[ ][3]={1,2,3,4,5,6}; 后,a[1][0]的值是____A____.
A) 4 B) 1 C) 2 D) 5
151、以下程序的输出结果是____C____.
#include <stdio.h>
void main()
{ int i,a[10];
for(i=9;i>=0;i–) a[i]=10-i;
printf(\”%d%d%d\”,a[2],a[5],a[8]);
}
A) 258 B) 741 C) 852 D) 369
152、以下定义语句中,错误的是___B_____.
A) int a[]={1,2}; B) char a={\”test\”};
C) char s[10]={\”test\”}; D) int a[]={\’a\’,\’b\’,\’c\’};
153、以下定义语句中,错误的是____D____.
A) int a[]={1,2}; B) char a[]={\”test\”};
C) char s[10]={\”test\”}; D) int n=5,a[n];
154、下列程序的输出结果是____C____.
#include <stdio.h>
void main()
{char b[]=\”ABCDEFG\”;
char p=0;
while(p<7)
putchar(b[p++]);
putchar(\’\\n\’);
}
A) GFEDCBA B) BCDEFG
C) ABCDEFG D) GFEDCB
155、下述对C语言字符数组的描述中错误的是___C__.
A) 字符数组可以存放字符串
B) 字符数组中的字符串可以整体输入、输出
C) 可以在赋值语句中通过赋值运算符\”=\”对字符数组整体赋值
D) 不可以用关系运算符对字符数组中的字符串进行比较
156、以下程序的输出结果是____A____.
#include<stdio.h>
void main()
{ int i,x[3][3]={1,2,3,4,5,6,7,8,9};
for(i=0;i<3;i++)
printf(\”%d,\”,x[i][i]);
printf(\”\\n\”);
}
A) 1,5,9, B) 1,4,7, C) 3,5,7, D) 3,6,9,
157、如有定义语句int a[]={1,8,2,8,3,8,4,8,5,8}; ,则数组a的大小是___A_____.
A) 10 B) 11 C) 8 D) 不定
158、有如下程序
#include<stdio.h>
void main()
{ char ch[80]=\”123abcdEFG*&\”;
int j;long s=0;
puts(ch);
for(j=0;ch[j]>\’\\0\’;j++)
if(ch[j]>=\’A\’&&ch[j]<=\’Z\’)
ch[j]=ch[j]+\’e\’-\’E\’;
puts(ch);
}
该程序的功能是____D____.
A) 测字符数组ch的长度
B) 将数字字符串ch转换成十进制数
C) 将字符数组ch中的小写字母转换成大写
D) 将字符数组ch中的大写字母转换成小写
159、设有如下定义:
char aa[2][20]={ \”abcd\”, \”ABCD\”};
则以下说法中错误的是____D____.
A) aa是个二维数组,可以存放2个19个字符以下的字符串
B) aa是个二维数组,每行中分别存放了字符串\”abcd\”和\”ABCD\”
C) aa[0]可以看作是一维数组名
D) aa[0][0]可以看作是一维数组名
160、以下对C语言函数的有关描述中,正确的是___A__.
A) 在C中,调用函数时,只能把实参的值传送给形参,形参的值不能传送给实参
B) C函数既可以嵌套定义又可以递归调用
C) 函数必须有返回值,否则不能使用函数
D) C程序中有调用关系的所有函数必须放在同一个源程序文件中
161、有如下说明: int a[10]={0,1,2,3,4,5,6,7,8,9};
则数值不为9的表达式是____B____.
A) a[10-1] B) a[8] C) a[9]-0 D) a[9]-a[0]
162、设有数组定义:char array[]=\”China\”;则数组array所占的存储空间为____C____.
A) 4个字节 B) 5个字节
C) 6个字节 D) 7个字节
163、下面程序的输出是____B____.
#include <stdio.h>
int m=13;
int fun2(int x, int y)
{ int m=3;
return(x*y-m);
}
void main()
{ int a=7, b=5;
printf(\”%d\\n\”,fun2(a,b)/m);
}
A) 1 B) 2 C) 7 D) 10
164、请读程序:
#include <stdio.h>
f(int b[ ], int n)
{ int i, r=0;
for(i=0; i<=n; i++) r=r+b[i];
return r;
}
void main()
{
int x, a[]={ 2,3,4,5,6,7,8,9};
x=f(a, 3);
printf(\”%d\\n\”,x); }
上面程序的输出结果是___B_____.
A) 20 B) 14 C) 9 D) 5
165、请读程序:
#include <stdio.h>
f(int b[ ], int n)
{ int i, r=1;
for(i=0; i<=n; i++) r=r*b[i];
return r; }
void main()
{ int x, a[]={ 2,3,4,5,6,7,8,9};
x=f(a, 3);
printf(\”%d\\n\”,x); }
上面程序的输出结果是___B_____.
A) 720 B) 120 C) 24 D) 6
166、请读程序:
#include<stdio.h>
f(char s[ ])
{ int i,j;
i=0;j=0;
while( s[j]!= \’\\0\’) j++;
return (j-i); }
void main()
{printf(\”%d\\n\”,f(\”ABCDEF\”));}
上面程序的输出结果是____B____.
A) 0 B) 6 C) 7 D) 8
167、对以下程序,正确的说法是__D______.
sub (char x,char y)
{ int z; z=x%y; return z; }
void main( )
{ int g=5,h=3,k;
k=sub(g,h);
printf(\”%d\\n\”,k); }
A) 实参与其对应的形参类型不一致,程序不能运行
B) 被调函数缺少数据类型说明,程序不能运行
C) 主函数中缺少对被调函数的说明语句,程序不能运行
D) 程序中没有错误,可以正常运行
168、若已定义实参数组int a[3][4]={2,4,6,8,10};,则在被调用函数f的下述定义中,对形参数组b定义正确的选项是_____B___.
A) f(int b[ ][6]) B) f(b) int b[ ][4];
C) f(int b[3][ ]); D) f(b) int b[4][5];
169、若函数调用时用数组名作为函数参数,以下叙述中,不正确的是____C____.
A) 实参与其对应的形参共占用同一段存储空间
B) 实参将其地址传递给形参,结果等同于实现了参数之间的双向值传递
C) 实参与其对应的形参分别占用不同的存储空间
D) 在调用函数中必须说明数组的大小,但在被调函数中可以使用不定尺寸数组
170、以下叙述中,不正确的是____B____.
A) 使用static float a定义的外部变量存放在内存中的静态存储区
B) 使用float b定义的外部变量存放在内存中的动态存储区
C) 使用static float c定义的内部变量存放在内存中的静态存储区
D) 使用float d定义的内部变量存放在内存中的动态存储区
171、如果一个函数位于C程序文件的上部,在该函数体内说明语句后的复合语句中定义了一个变量,则该变量___C_____.
A) 为全局变量,在本程序文件范围内有效
B) 为局部变量,只在该函数内有效
C) 为局部变量,只在该复合语句中有效
D) 定义无效,为非法变量
172、调用函数时,当实参和形参都是简单变量时,它们之间数据传递的过程是____D____.
A) 实参将其地址传递给形参,并释放原先占用的存储单元
B) 实参将其地址传递给形参,调用结束时形参再将其地址回传给实参
C) 实参将其值传递给形参,调用结束时形参再将其值回传给实参
D) 实参将其值传递给形参,调用结束时形参并不将其值回传给实参
173、以下叙述中,不正确的是___B_____.
A) 在同一C程序文件中,不同函数中可以使用同名变量
B) 在main函数体内定义的变量是全局变量
C) 形参是局部变量,函数调用完成即失去意义
D) 若同一文件中全局变量和局部变量同名,则全局变量在局部变量作用范围内不起作用
174、若函数调用时参数为基本数据类型的变量(俗称简单变量),以下叙述正确的是____C____.
A) 实参与其对应的形参共占存储单元
B) 只有当实参与对应的形参同名时才共占存储单元
C) 实参与其对应的形参分别占用不同的存储单元
D) 实参将数据传递给形参后,立即释放原先占用的存储单元
175、若主调用函数类型为double,被调用函数定义中没有进行函数类型说明,而return语句中的表达式类型为float型,则被调函数返回值的类型是____A____。
A) int 型 B) float 型
C) double 型 D) 由系统当时的情况而定
176、在以下叙述中,不正确的选项是____B____。
A) C语言程序总是从main( )函数开始执行
B) 在C语言程序中,被调用的函数必须在main( )函数中定义
C) C程序是函数的集合,在这个函数集中包括标准函数和用户自定义函数
D) 在C语言程序中,函数的定义不能嵌套,但函数的调用可以嵌套
177、C语言中,若未说明函数的类型,则系统默认该函数的类型是___C_____。
A) float型 B) long型 C) int型 D) double型
178、下面函数的功能是____B____。
sss(s, t)
char s[ ], t[ ];
{ int i=0;
while((s[i])&&(t[i])&&(t[i]== s[i])) i++;
return (s[i]-t[i]);}
A) 求字符串的长度
B) 比较两个字符串的大小
C) 将字符串s复制到字符串t中
D) 将字符串s接续到字符串t中
179、设有如下函数定义:
int f(char s[ ])
{ int i=0;
while(s[i++]!=\’\\0\’);
return (i-1); }
如果在主程序中用下面的语句调用上述函数,则输出结果为___C_____.
printf(\”%d\\n\”,f(\”goodbey!\”));
A) 3 B) 6 C) 8 D) 9
180、对于C语言的函数,下列叙述中正确的是___A___.
A) 函数的定义不能嵌套,但函数调用可以嵌套
B) 函数的定义可以嵌套,但函数调用不能嵌套
C) 函数的定义和调用都不能嵌套
D) 函数的定义和调用都可以嵌套
181、以下说法中正确的是_____C___.
A) C语言程序总是从第一个定义的函数开始执行
B) 在C语言程序中,要调用的函数必须在main()函数中定义
C) C语言程序总是从main()函数开始执行
D) C语言程序中的main()函数必须放在程序的开始部分
182、以下程序的输出结果是____B_____.
#include <stdio.h>
int a,b;
void fun()
{ a=100; b=200; }
void main()
{ int a=5,b=7;
fun();
printf(\”%d%d\\n\”,a,b); }
A) 100200 B) 57 C) 200100 D) 75
183、以下函数func()的功能是:使具有n个元素的一维数组b的每个元素的值都增加2,划线处应填入__D_.
func(int b[ ],int n)
{ int ;
for(i=0;i<n;i++)
__________; }
A) b[i++] B) b[i]++ C) b[i+=2] D) b[i]+=2
184、设有以下函数:
#include <stdio.h>
int f(int a)
{ int b=0,c;
c=3;
b++ ; c++;
return (a+b+c); }
如果在下面的程序中调用该函数,则输出结果是__B__.
void main()
{ int i;
for(i=0;i<3;i++) printf(\”%d\\n\”,f(i)); }
A) 5 B) 5 C) 3 D) 3
7 6 4 3
9 7 5 3
185、设有以下函数:
#include <stdio.h>
int f(int a)
{ int b=0;
static c=3;
b++ ; c++;
return (a+b+c); }
如果在下面的程序中调用该函数,则输出结果是___A_.
void main()
{ int a=2,i;
for(i=0;i<3;i++) printf(\”%d\\n\”,f(a)); }
A) 7 B) 7 C) 7 D) 7
8 9 10 7
9 11 13 7
186、在调用函数时,如果实参是简单变量,它与对应形参之间的数据传递方式是_____B___.
A) 地址传递 B) 单向值传递
C) 由实参传给形参,再由形参传回实参
D) 传递方式由用户指定
187、C语言规定,除主函数外,程序中各函数之间__A__.
A) 既允许直接递归调用也允许间接递归调用
B) 不允许直接递归调用也不允许间接递归调用
C) 允许直接递归调用不允许间接递归调用
D) 不允许直接递归调用允许间接递归调用
188、以下函数fun形参的类型是____D____.
fun( float x)
{ float y;
y=3*x-4;
return y; }
A) int B) 不确定 C) void D) float
189、下面程序的输出是____C____.
int fun3(int x)
{static int a=3;
a+=x;
return(a); }
void main()
{int k=2,m=1,n;
n=fun3(k);
n=fun3(m);
printf(\”%d\\n\”,n); }
A) 3 B) 4 C) 6 D) 9
190、下列程序执行后输出的结果是___C_____.
#include<stdio.h>
int f(int a)
{int b=0;
static c=3;
a=c++,b++;
return(a); }
void main()
{int a=2,i,k;
for(i=0;i<3;i++)
k=f(a++);
printf(\”%d\\n\”,k); }
A) 3 B) 0 C) 5 D) 4
191、C语言中规定函数的返回值的类型是由__D______.
A) return语句中的表达式类型所决定
B) 调用该函数时的主调用函数类型所决定
C) 调用该函数时系统临时决定
D) 在定义该函数时所指定的类型所决定
自考资料网:建议开通永久VIP超级会员更划算,除特殊资源外,全站所有资源永久免费下载
1. 本站所有网课课程资料来源于用户上传和网络收集,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,助力考生上岸!
3. 如果你想分享自己的经验或案例,可在后台编辑,经审核后发布在“自考资料网”,有下载币奖励哦!
4. 本站提供的课程资源,可能含有水印,介意者请勿下载!
5. 如有链接无法下载、失效或广告,请联系管理员处理(在线客服)!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 星光不问赶路人,岁月不负有心人,不忘初心,方得始终!