A dynamic 2D array is basically an array of pointers to arrays. You should initialize it using a loop: int** ary = new int*[sizeX]; for(int ...
確定! 回上一頁