if (row_count > 0 && column_count > 0) { rows = row_count; cols = column_count; p = new double*[rows]; for (int r = 0; r < rows; r++) { p[r] = new double[cols]; // initially fill in zeros for all values in the matrix; .****** for (int c = 0; c < cols; c++)(THE FUNCTION CONTAINING "FOR" NOT EXPANDED INLINE*********************** { p[r][c] = 0; } }
inline
for
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)