I've created a multidimensional array and populated it:
int[][] multiArray = { {1,2,3} , {4,5,6,7} };
and if I do the following:
System.out.println(multiArray.length);
I'll get the value 2, which is the number of columns in this matrix.
But what is the syntax I have to use in order to get the length of a certain column?
I know how to address a specific item in order to get it or change it (for example, multiArray[0][2] would let me address value = 3). Just need to know how to address the length of a specific column.