/*write a c program to read a matrix A(m*n),find the transpose of the given matrix and output both the input matix and the tansposed matrix */ #include #include int main() { int i,j,m,n,a[5][5],t[5][5]; printf("\nEnter m and n size of the matrix a:\n"); scanf("%d%d",&m,&n); printf("Enter the matrix a:\n"); for(i=0;i