sorry for the n00bish question, but if I use the following code
[c]int **array = (int**)calloc(ROWS, sizeof(int*));
for(i=0; i<ROWS;i++)
array = (int*)calloc(COLS,sizeof(int));[/c]
and I wanted to iterate through this array[][]....which set of []'s would be associated with ROWS, and which with ...