// <--- Can be defined as a global variable to the file if the file has more than 1 function.
// The variable names are your choice, but I find these work well.
constexprunsignedint MAXROWS{ 2 }, MAXCOLS{ 3 }; // <--- Or just "unsigned" will work.
int aaa[MAXROWS][MAXCOLS]
{
{6, 2, 3},
{2, 3, 4}
};