1.

Choose the correct way of initializing a multidimensional array below.

A. int[][] code = {{1,2},{3,4,5}};
B. int[2][] code = {{1,2},{3,4,5}};
C. int[][] code={1,2,
D. All
Answer» B. int[2][] code = {{1,2},{3,4,5}};


Discussion

No Comment Found