Double dimension array in java program
Answers
Answered by
0
Two dimensional array in java. The Two dimensionl array java programming languages is nothing but an array of arrays . in java two dimensional array , data is stored in row and column and we can access the record using both the row index and column index ( like and excle
Answered by
1
We can declare a Double Dimensional Array (DDA) in Java by using the following syntax,
<Data_Type>[ ] [ ] <Array_Name> = new <Data_Type>[x][y];
Similar questions