Computer Science, asked by ankittiwari53, 8 months ago

Write a C program to perform matrix multiplication using functions?

Answers

Answered by badrinathgpm123
2

Explanation:

C Program to Perform Matrix Multiplication

★int m, n, p, q, c, d, k, sum = 0;

★int first[10][10], second[10][10], multiply[10][10];

★printf("Enter the number of rows and columns of first matrix\n");

★scanf("%d%d", &m, &n);

★printf("Enter the elements of first matrix\n");

★for ( c = 0 ; c < m ; c++ )

★for ( d = 0 ; d < n ; d++ )

★scanf("%d", &first[c][d]);

Answered by Chiadika
0

Answer:

ok

Explanation:

blah

Similar questions