I would like to know what is the right way to copy two-dimension array from temporary array into original array. The array size is unknown at the beginning of the program and user is set it later on. here's the code:
private static void copy_Matrix(int origin_Matrix[][] , int copy_Matrix[][], int row, int column)
{
for ( int i = 0 ; i < row-1; ++i) { for (int j = 0; j < column; j++) { origin_Matrix[i][j] = copy_Matrix[i][j]; } }}
I know it's wrong, please help..