How do you create a Two-Dimensional Array?
type nameOfArray [size][size];
type nameOfArray [size][size]
Array nameOfArray [size][size];
In what situation would you need a two-dimensional array?
When you want to arrange a set of values in a row
When you want to arrange a set of values in a grid (row and columns)
When you want to multiply 2x3
What is the definition of a two-dimensional array?
An array of an array
An array of an array of an array
An array with two different values for each position