main() { int a[10][10],b[10][10],c[10][10],i,j,m,n,ip,k,p,q; clrscr(); printf("Input row and column of A matrix:"); scanf("%d %d",&m,&n); printf("Input row and column of B matrix:"); scanf("%d %d",&k,&q); if(n==k) { printf("Matrices can be multiplied\n"); printf("The resultant matrix is %d x %d\n",m,q); printf("Input A-matrix\n"); read_mat(a,m,n); printf("Input B-matrix\n"); read_mat(b,k,q); for(i=0;i