#include void main () { static int ma[10][10],mb[10][10]; int i,j,k,a,m,n; printf ("Enter the order of the matrix \n"); scanf ("%d %d", &m,&n); printf ("Enter co-efficients of the matrix \n"); for (i=0;i ma[i][k]) { a = ma[i][j]; ma[i][j] = ma[i][k]; ma[i][k] = a; } } } } /* End of outer for loop*/ for (i=0;i