16.若有說明:int a[][4]={0,0};則下面不正確的敘述是( )
A.數(shù)組a的每個(gè)元素都可得到初值0
B.二維數(shù)組a的第一維大小為1
C.當(dāng)初值的個(gè)數(shù)能被第二維的常量表達(dá)式的值除盡時(shí),所得商數(shù)就是第一維的大小
D.只有元素a[0][0]和a[0][1]可得到初值,其余元素均得不到確定的初值
【參考答案】D
17.已知學(xué)生記錄描述為
struct student
{ int no;
char name[20],sex;
struct
{ int year,month,day;
} birth;
};
struct student s;
設(shè)變量s中的“生日”是“1984年11月12日”,對“birth”正確賦值的程序段是( )
A.year=1984;month=11;day=12;
B.s.year=1984;s.month=11;s.day=12;
C.birth.year=1984;birth.month=11;birth.day=12;
D.s.birth.year=1984;s.birth.month=11;s.birth.day=12;
【參考答案】D
相關(guān)推薦:
計(jì)算機(jī)二級C技巧:VC6.0控制鼠標(biāo)反方向移動 計(jì)算機(jī)等級考試二級C語言考試輔導(dǎo)教程匯總