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
詳解 (共 1 筆)
未解鎖
Which of the follow...