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