Automated naming of dynamic arrays

Hi everybody.
My Situation:
I got a certain variable, which is declared by the size of a dynamicaly generated array. Let's name it (the size) iAmount.
The User has to declare a new integer, iSizeRow.The programm gets the iAmountRows. No problem so far.

But as you might already see, the content of the initilally array has to be divided and deployed to the rows.
I fail in creating these row-Arrays, atm(They have to be Arrays).
for (unt iN=0;iN<iAmountRows;iN++) int *arrRow[iN] = new int [iSizeRow];

I want to name the Row-Arrays with numbers, need them for later use.

Thanks in advance for all hints.
You are looking for a bidimensional array:
http://www.cplusplus.com/forum/articles/7459/
Jap.
Thanks Bazzy. That'll help.
Topic archived. No new replies allowed.