#include #define SIZE 100 typedef int mtx[SIZE][SIZE]; /* put the transpose of matrix a in b */ void transpose(mtx a, mtx b ) { int i,j,k; for (i=0;i