Ver originalvoid fill_matrix(int **matrix, int rows, int cols) { for(int i = 0; i < rows; i++) { for(int j = 0; j < cols; j++) { matrix[i][j] = (i * rows) + j; } }}