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