APP下载
首页
>
职业技能
>
C语言复习资料题库
搜索
C语言复习资料题库
题目内容
(
单选题
)
157.若 w= 1,×=2,y=3,则条件表达式 w<×?w:y 的值是( )。

A、4

B、3

C、2

D、1

答案:D

C语言复习资料题库
52.在for循环中,continue作用是结束本次循环。( )
https://www.shititong.cn/cha-kan/shiti/00093b67-f1cf-6058-c0cb-2e357e18fc00.html
点击查看题目
20.设 × 为 int 类型,其值为 11 ,则表达式( ×++*1/3 )的值是3:( )
https://www.shititong.cn/cha-kan/shiti/00093b67-f1c5-7c2a-c0cb-2e357e18fc00.html
点击查看题目
50.若×和y都是int型变量,×=100,y=200,且有下面的程序片段:printf(“%d”, (×, y));上面程序片段的输出结果是( )。
https://www.shititong.cn/cha-kan/shiti/0009395c-b91c-918a-c0a6-5204e26ea600.html
点击查看题目
16.若有说明语句:char c=’\72’;则变量c( )。
https://www.shititong.cn/cha-kan/shiti/0009395c-b90c-d6b8-c0a6-5204e26ea600.html
点击查看题目
35.以下程序的输出结果是( )
https://www.shititong.cn/cha-kan/shiti/0009395c-b916-de53-c0a6-5204e26ea600.html
点击查看题目
13.字符常量的长度肯定为1.( )
https://www.shititong.cn/cha-kan/shiti/00093b67-f1c3-794e-c0cb-2e357e18fc00.html
点击查看题目
39.用C语言编写的程序是一种需要经过编译和连接才能运行的程序( )
https://www.shititong.cn/cha-kan/shiti/00093b67-f1cb-64fb-c0cb-2e357e18fc00.html
点击查看题目
23. 设 k 和 × 均为 int 型变量,且 k=7 ; ×=12 ;则能使
值为 3 的表达式是×%=(k%=5)( )
https://www.shititong.cn/cha-kan/shiti/00093b67-f1c6-3e81-c0cb-2e357e18fc00.html
点击查看题目
127.合法的数组定义是( )。
https://www.shititong.cn/cha-kan/shiti/0009395c-b937-8426-c0a6-5204e26ea600.html
点击查看题目
70.若函数没有返回值,则需要用void定义返回值的类型。 ( )
https://www.shititong.cn/cha-kan/shiti/00093b67-f1d4-d74a-c0cb-2e357e18fc00.html
点击查看题目
首页
>
职业技能
>
C语言复习资料题库
题目内容
(
单选题
)
手机预览
C语言复习资料题库

157.若 w= 1,×=2,y=3,则条件表达式 w<×?w:y 的值是( )。

A、4

B、3

C、2

D、1

答案:D

分享
C语言复习资料题库
相关题目
52.在for循环中,continue作用是结束本次循环。( )

A. 正确

B. 错误

https://www.shititong.cn/cha-kan/shiti/00093b67-f1cf-6058-c0cb-2e357e18fc00.html
点击查看答案
20.设 × 为 int 类型,其值为 11 ,则表达式( ×++*1/3 )的值是3:( )

A. 正确

B. 错误

https://www.shititong.cn/cha-kan/shiti/00093b67-f1c5-7c2a-c0cb-2e357e18fc00.html
点击查看答案
50.若×和y都是int型变量,×=100,y=200,且有下面的程序片段:printf(“%d”, (×, y));上面程序片段的输出结果是( )。

A. 200

B. 100

C.  100 200

D.  输出格式符不够,输出不确定的值

https://www.shititong.cn/cha-kan/shiti/0009395c-b91c-918a-c0a6-5204e26ea600.html
点击查看答案
16.若有说明语句:char c=’\72’;则变量c( )。

A.  包含1个字符

B.  包含2个字符

C.  包含3个字符

D.  说明不合法,c的值不确定

https://www.shititong.cn/cha-kan/shiti/0009395c-b90c-d6b8-c0a6-5204e26ea600.html
点击查看答案
35.以下程序的输出结果是( )

A.  10 10

B.  12 12

C.  11 10

D.  11 13

https://www.shititong.cn/cha-kan/shiti/0009395c-b916-de53-c0a6-5204e26ea600.html
点击查看答案
13.字符常量的长度肯定为1.( )

A. 正确

B. 错误

https://www.shititong.cn/cha-kan/shiti/00093b67-f1c3-794e-c0cb-2e357e18fc00.html
点击查看答案
39.用C语言编写的程序是一种需要经过编译和连接才能运行的程序( )

A. 正确

B. 错误

https://www.shititong.cn/cha-kan/shiti/00093b67-f1cb-64fb-c0cb-2e357e18fc00.html
点击查看答案
23. 设 k 和 × 均为 int 型变量,且 k=7 ; ×=12 ;则能使
值为 3 的表达式是×%=(k%=5)( )

A. 正确

B. 错误

https://www.shititong.cn/cha-kan/shiti/00093b67-f1c6-3e81-c0cb-2e357e18fc00.html
点击查看答案
127.合法的数组定义是( )。

A.  int a[ ]=”string”;

B.  int a[5]={0,1,2,3,4,5};

C.  int s=”string”;

D.  char a[ ]={0,1,2,3,4,5};

https://www.shititong.cn/cha-kan/shiti/0009395c-b937-8426-c0a6-5204e26ea600.html
点击查看答案
70.若函数没有返回值,则需要用void定义返回值的类型。 ( )

A. 正确

B. 错误

https://www.shititong.cn/cha-kan/shiti/00093b67-f1d4-d74a-c0cb-2e357e18fc00.html
点击查看答案
试题通小程序
试题通app下载