#define ROWS 5 #define COLS 10 typedef struct { short a[ROWS][COLS]; } matrix; typedef struct { short a[COLS][ROWS]; } tmatrix; typedef struct { short a[ROWS][ROWS]; } rmatrix; typedef struct { short s[COLS][COLS]; } cmatrix; void MultMatrices(short,short,short*,short*,short*); void PrintMatrix(short Rows, short Cols, short *matrix, char*); main() { matrix m; tmatrix n; rmatrix ians; short row, col; for(row=0;row