Just playing around with multidimensional arrays and noted the "bh" in the code below doesn't get printed. (the twoDstringArray [0][1] ) Wondering why not? Thank-you to anyone who takes the trouble to explain this to me.
// int evil[5][6]; // desired 2D array
int mimic[5*6]; // mimicing 1D array
// evil[2][3] = 1; // desired [2][3] index
mimic[ (2*6) + 3] = 1; // mimiced [2][3] index
Even if your not currently at the level where your going to be passing these around or doing anything significant in an assignment or some such. You will be in future, so you REALLY SHOULD read it.