多項選擇題以下對一維數(shù)組a的不正確說明是()

A.char a(10)
B.int a[]
C.int k=5,a[k]
D.char a[]={’a’,’b’,’c’}


您可能感興趣的試卷

你可能感興趣的試題

2.多項選擇題若有說明語句:int y[][4]={0,0};則下面敘述正確的是()

A.數(shù)組y的每個元素都可得初值0
B.二維數(shù)組y的行數(shù)為1
C.該說明等價于inty[][4]={0}
D.只有元素y[0][0]和y[0][1]可得到初值0,其余元素均得不到初值0

3.多項選擇題以下各組選項中,不能正確定義二維實型數(shù)組s的選項是()

A.float s[3][4];float s[ ][4];float s[3][ ]={{1},{0}}
B.float s(3,4);float s[ ][ ]={{0};{0}};float s[3][4]
C.float s[3][4];float s[ ][4]={{0},{0}}; float s[ ][4]={{0},{0},{0}}
D.float s[3][4];float s[3][ ];float s[ ][4]

5.單項選擇題

以下函數(shù)Abc的功能是()

A.計算字符串的長度
B.比較兩個字符串的大小
C.實現(xiàn)字符串的復制
D.以上三種說法都不對