void fill_matrix(double **m, int r, int c, char *file) { int i, j; ... i < r; i++) { for (j = 0; j < c; j++) { fscanf(temp_file, "%lf", ...
確定! 回上一頁