#include #include "Matrix.h" void PrintMatrix(matrix * m, char *str) { short rr,cc, xx; /*for(rr=0, xx=0;rrrows;rr++) {*/ rr=m->rows*m->cols; for(xx=0;xxcols;cc++,xx++) { /* printf(str,m->st[m->cols*rr+cc); */ printf(str,m->st[xx]); }putchar('\n');} }