An Example
An array of arrays
int b[][] = { {1,2}, {3, 4, 5}}
Row 0: 1 2
Row 1: 3 4 5
A 3x3 array
int b[][];
b = new int[3][3];
Previous slide
Back to first slide
View graphic version