A multidimensional array is an array inside another array. You can think about it as a table that has rows and columns.
int table [2] [3] = { {2,5,6} , {4,7,8} };
How to create a multidimensional array?
How to print a multidimensional array using for loops?