Quote Originally Posted by iMalc View Post
Perhaps rather than being about "the same time" your question is more about "in the same line of code"?
Yep, that's what I meant.
As for your second question, you can represent a multi-dimensional array in several different ways. e.g. int a[2][3][4][5]; would be a four-dimensional array with 120 elements. Each dimension being of a different size.
You can even have ragged sized dimensions such as an array of strings where each string is potentially a different length. It's all in how you set it up.

If I've again incorrectly guessed what you were actually trying to ask, then perhaps you could explain a little better next time.
Thank you. That answers that. Now I'll still waiting for an answer to my first question.