Which of the following is the correct way to declare a multidimensional array in Java?
(a) int[] arr;
(b) int arr[[]];
(c) int[][]arr;
(d) int[[]] arr;
This intriguing question originated from Array and Array Operations in portion Abstract Data Types of Data Structures & Algorithms I
I got this question in examination.