int arr[][]=new int[c.rowSize ][ c.colSize];
12
int **arr = new int*[c.colSize]; for(int i = 0; i < c.colSize; i++) arr[i] = new int[c.rowSize];