Examlex

Solved

Int[][] MyVals = New Int[3][]

question 37

Essay

int[][] myVals = new int[3][]
myVals[0] = new int[3];
myVals[1] = new int[10];
myVals[2] = new int[5];
The above code depicts a ragged array. What does this mean? Describe the rows and columns that make up this array.


Definitions:

Related Questions