|
C.c,c,n
D.china,china,n
13.
全局变量的存储类型可以定义为
(
)
A.auto
或
static
B.extern
或
register
C.auto
或
extern
D.extern
或
static
14.
函数调用语句
fun((((1,2),3),4));
中参数的个数是
(
)
A.1
B.2
C.3
D.4
15.
对于下列定义的枚举型
enum colorl {yellow,green,blue=5, red,brone};
则枚举常量
yellow
和
red
的值分别是
(
)
A.3
,
6
B.1
,
6
C.0
,
6
D.0
,
3
16.
设有定义
struct ru{long x;float y;} time,*timep=&time;
则对
time
中成员
x
的正确引用是
(
)
A.rnu.time.x
B.timep.x
C.(* timep).x
D.time->x
17.
设
FILE*fp;
若
fp
指向的文件未结束,则函数
feof(fp)
的返回值为
(
)
A.0
B.true
C.
非
0
D.false
|