Section 8.8 Word Matching Exercise
int x[3][4]
string x[3][2]
bool x[3][3][4]
double x[3]
char x[4][3][4][5]
create an array of three double elements. | |
creates a four-dimensional array of char. | |
creates a two-dimensional array of int. | |
creates a two-dimensional array of string. | |
creates a three-dimensional array of boolean. |