Answers for "How will you traverse the Multidimensional Array (100 Dimension or More), you do not have the rows, columns, size of the array, and datatype of Array nothing."

C++
1

2d array java

int[][] arr = new int[10][20]; 
        arr[0][0] = 1;
Posted by: Guest on January-23-2021

Code answers related to "How will you traverse the Multidimensional Array (100 Dimension or More), you do not have the rows, columns, size of the array, and datatype of Array nothing."

Browse Popular Code Answers by Language