L6. Implement Matrix Multiplication and Validate The Rules of Multiplication
L6. Implement Matrix Multiplication and Validate The Rules of Multiplication
printf("A matrix:\n");
for(i = 0; i < m; ++i)
{
for(j = 0; j < n; ++j)
printf("%4d",a[i][j]);
printf("\n");
}