Something I noticed:
int[10][3] arrayA;
int arrayB[10][3];
arrayB[9][2] = 10; // no problem
arrayA[9][2] = 10; // error; array out of bounds
Which method of declaration is considered the standard?
And why is it that these two behave so differently with respect to column/row; is there a legacy or standardization reason for it? Just curious.