c program to multiplication of two 3*3 matrices
/* c program to multiplication of two 3*3 matrices*/ #include<stdio.h> #include<conio.h> void main() { int m1[3][3],m2[3][3],prod[3][3]; int i,j,k; clrscr(); printf("enter the first matrix : \n"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%d",&m1[i][j]); printf("enter 2nd matrix : \n"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%d",&m2[i][j]); /* multiplication of matrix */ for(i=0;i<3;i++) for(j=0;j<3;j++) ...