APP下载
首页
>
财会金融
>
C语言期末复习基础知识测验
搜索
C语言期末复习基础知识测验
题目内容
(
单选题
)
2、下列叙述中,不正确的是( )(1.5)

A、 分号是C语句的必要组成部分

B、 C语句的注释可以写在语句的后面

C、 主函数的名字不一定用main表示

D、 函数是C程序的基本单位

答案:C

C语言期末复习基础知识测验
47、如果c是大于1的正整数,与以下程序段功能相等的赋值语句是( )。s=a;for(b=1;b<=c;b++)s=s+1;(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-6d4d-c014-cedb28f5e100.html
点击查看题目
29、使用“scanf("a=%d,b=%d",&a,&b)”,要使a,b的值均为25,正确的输入是( )。(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-4514-c014-cedb28f5e100.html
点击查看题目
63、1C_fun是合法的标识符。(0.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-9020-c014-cedb28f5e100.html
点击查看题目
25、以下程序的输出结果是( )。#includeint main(){int a=010,b=0x10,c=10;printf("%d,%d,%d",a,b,c);}(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-3ca4-c014-cedb28f5e100.html
点击查看题目
32、putchar( )函数可以向终端输出一个( )。(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-4b8a-c014-cedb28f5e100.html
点击查看题目
16、执行语句“x=(a=5,b=a--)”后,x,a,b的值分别是( )(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-25fc-c014-cedb28f5e100.html
点击查看题目
26、输入“12345,xyz<回车>”,下列程序的输出结果是( )。#includevoid main(){int a;char c;scanf("%3d%3c",&a,&c);printf("%d,%c",a,c);}(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-3edc-c014-cedb28f5e100.html
点击查看题目
24、若变量x,y均定义为int型,z定义为double型,下列不合法的scanf语句是( )(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-3a74-c014-cedb28f5e100.html
点击查看题目
69、对 C 的源程序进行编译是指将C源程序翻译成目标程序。(0.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-9cd6-c014-cedb28f5e100.html
点击查看题目
23、若变量x,y均定义为int型,z定义为double型,下列不合法的scanf语句是( )(1.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-383f-c014-cedb28f5e100.html
点击查看题目
首页
>
财会金融
>
C语言期末复习基础知识测验
题目内容
(
单选题
)
手机预览
C语言期末复习基础知识测验

2、下列叙述中,不正确的是( )(1.5)

A、 分号是C语句的必要组成部分

B、 C语句的注释可以写在语句的后面

C、 主函数的名字不一定用main表示

D、 函数是C程序的基本单位

答案:C

C语言期末复习基础知识测验
相关题目
47、如果c是大于1的正整数,与以下程序段功能相等的赋值语句是( )。s=a;for(b=1;b<=c;b++)s=s+1;(1.5)

A. s=b+c;

B. s=s+c;

C. s=a+b;

D. s=a+c;

https://www.shititong.cn/cha-kan/shiti/00054443-7207-6d4d-c014-cedb28f5e100.html
点击查看答案
29、使用“scanf("a=%d,b=%d",&a,&b)”,要使a,b的值均为25,正确的输入是( )。(1.5)

A. a=25 b=25(空格分开)

B. 25 25(空格分开)

C. 25,25

D. a=25,b=25

https://www.shititong.cn/cha-kan/shiti/00054443-7207-4514-c014-cedb28f5e100.html
点击查看答案
63、1C_fun是合法的标识符。(0.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-9020-c014-cedb28f5e100.html
点击查看答案
25、以下程序的输出结果是( )。#includeint main(){int a=010,b=0x10,c=10;printf("%d,%d,%d",a,b,c);}(1.5)

A. 10,10,10

B. 8,16,10

C. 16,8,10

D. 8,10,10

https://www.shititong.cn/cha-kan/shiti/00054443-7207-3ca4-c014-cedb28f5e100.html
点击查看答案
32、putchar( )函数可以向终端输出一个( )。(1.5)

A. 字符串

B. 字符或字符型变量值

C. 实型变量值

D. 浮点型变量值

https://www.shititong.cn/cha-kan/shiti/00054443-7207-4b8a-c014-cedb28f5e100.html
点击查看答案
16、执行语句“x=(a=5,b=a--)”后,x,a,b的值分别是( )(1.5)

A. 5,4,4

B. 5,5,4

C. 5,4,5

D. 4,5,4

https://www.shititong.cn/cha-kan/shiti/00054443-7207-25fc-c014-cedb28f5e100.html
点击查看答案
26、输入“12345,xyz<回车>”,下列程序的输出结果是( )。#includevoid main(){int a;char c;scanf("%3d%3c",&a,&c);printf("%d,%c",a,c);}(1.5)

A. 12,4

B. 12,34

C. 123,4

D. 1234

https://www.shititong.cn/cha-kan/shiti/00054443-7207-3edc-c014-cedb28f5e100.html
点击查看答案
24、若变量x,y均定义为int型,z定义为double型,下列不合法的scanf语句是( )(1.5)

A. scanf("%d%d%lf",&x,&y,&z);

B. scanf("%d,%x,%lf",&x,&y,&z);

C. scanf("%x,%o,%6.2f",&x,&y,&z);

D. scanf("%x,%o",&x,&y);

https://www.shititong.cn/cha-kan/shiti/00054443-7207-3a74-c014-cedb28f5e100.html
点击查看答案
69、对 C 的源程序进行编译是指将C源程序翻译成目标程序。(0.5)
https://www.shititong.cn/cha-kan/shiti/00054443-7207-9cd6-c014-cedb28f5e100.html
点击查看答案
23、若变量x,y均定义为int型,z定义为double型,下列不合法的scanf语句是( )(1.5)

A. scanf("%d%d%lf",&x,&y,&z);

B. scanf("%d,%x,%lf",&x,&y,&z);

C. scanf("%x,%o,%6.2f",&x,&y,&z);

D. scanf("%x,%o",&x,&y);

https://www.shititong.cn/cha-kan/shiti/00054443-7207-383f-c014-cedb28f5e100.html
点击查看答案
试题通小程序
试题通app下载