int score[4][3] = {{85, 92, 88}, {56, 49, 67}, {89, 97, 76}, {42, 56, 74}};The form is easy to remember since a two dimensional array is a list of lists, and a list in C++ is written with a pair of braces and with items separating each other by commas.
int score[4][3] = {{85, 92, 88}, {56, 49, 67}, {89, 97, 76}, {42, 56, 74}};
int score[4][3] = {85, 92, 88, 56, 49, 67, 89, 97, 76, 42, 56, 74};The way how the above initialization list is written makes perfect sense if you remember that the values of a two-dimensional array are stored one row after another in memory.