問題詳情
18. Which of the following C code is used to declare a two-dimensional array of integers with 5 rows and3 columns?
(A) int data[5,3];
(B) int data[5][3];
(C) int data[5x3];
(D) int data[5] x[3];
(E) None of the above
參考答案
答案:B
難度:計算中-1
書單:沒有書單,新增
用户評論
【Jane Yen】評論
Which of the following C code is used to declare a two-dimensional array of integers with 5 rows and3 columns?