type myArray[rows][cols];
12345
char ticTacToe[3][3] = { { 'x', 'x', 'x' }, {'o', 'o', 'o' }, {'x', 'o', 'x' }, }