<p><img src="https://cdn.steemitimages.com/DQmZZPpkjHTsnM8dCgoLDUkRHrT8DbGXxeqCsqHcxeNGoRi/blob" alt=""><br> #include <stdio.h></p> <p>int main()<br> {<br> int m, n, p, q, c, d, k, sum = 0;<br> int first[10][10], second[10][10], multiply[10][10];</p> <p>printf("Enter number of rows and columns of first matrix\n");<br> scanf("%d%d", &m, &n);<br> printf("Enter elements of first matrix\n");</p> <p>for (c = 0; c < m; c<ins>)<br> for (d = 0; d < n; d</ins>)<br> scanf("%d", &first[c][d]);</p> <p>printf("Enter number of rows and columns of second matrix\n");<br> scanf("%d%d", &p, &q);</p> <p>if (n != p)<br> printf("The matrices can't be multiplied with each other.\n");<br> else<br> {<br> printf("Enter elements of second matrix\n");</p> <pre><code>for (c = 0; c < p; c++) for (d = 0; d < q; d++) scanf("%d", &second[c][d]); for (c = 0; c < m; c++) { for (d = 0; d < q; d++) { for (k = 0; k < p; k++) { sum = sum + first[c][k]*second[k][d]; } multiply[c][d] = sum; sum = 0; } } printf("Product of the matrices:\n"); for (c = 0; c < m; c++) { for (d = 0; d < q; d++) printf("%d\t", multiply[c][d]); printf("\n"); } </code></pre> <p>}</p> <p>return 0;<br> }</p>