previous
|
start
|
next
Two-Dimensional Arrays
Matrix with rows and columns
Example: Tic Tac Toe board
char[][] board = new char[3][3];
board[i][j] = 'x';
previous
|
start
|
next