C program to find matrix multiplication
C program to find matrix multiplication
Input:
Enter the elements of array a:
1 2 3
4 5 6
7 8 9
Enter the elements of array b:
1 2 3
4 5 6
7 8 9
Output:
The result matrix 3x1 of sum is:
30
81
150
Implementation: