Declare a 3×3 two-dimensional array of integers named tictactoe.
LANGUAGE: C++
CHALLENGE:
Declare a 3×3 two-dimensional array of integers named tictactoe.
SOLUTION:
int tictactoe[3][3];
Declare a 3×3 two-dimensional array of integers named tictactoe.
int tictactoe[3][3];