}/* for i *//* Print entries of A *//* do not use gsl_matrix_fprintf */printf("Solution of the system Ax=b via PLU factorizations\n");printf("Matrix A:\n");for(i =0; i < nr; i++) {for(j =0; j < nc; j++)printf("%7.2g ", gsl_matrix_get (A, i, j));putcha...