Getting Arrays – 2D
Declaration
int b[][];
Allocation
b = new int[10][10];
Assignment
b[3][7] = 5 ;
Reference
y = b[3][7];
Previous slide
Next slide
Back to first slide
View graphic version