#include<stdio.h>
void main()
{
printf("Enter order of Matrix\n");
scanf("%d",&n);
printf("Enter the elements of Matrix1");
for(i=0;i
printf("Enter the elements of Matrixt2");
for(i=0;i
for(i=0;i
for(j=0;j
Mat3[i][j]=0;
for(k=0;k
}
}
printf("Products of Matrix1 And Matrix2\n");
for(i=0;i
for(j=0;j
printf("\t%d",Mat3[i][j]);
}
printf("\n");
}
}