write a program in c to calculate the sum of two compatible matrices
Answers
Answered by
0
Answer:
Adding Two Matrices In C :
- #include < stdio.h >
- int main()
- {int m, n, c, d, first[10][10], second[10][10], sum[10][10];
- printf("Enter the number of rows and columns of matrix\n");
- scanf("%d%d", & m, & n);
- printf("Enter the elements of first matrix\n");
- for (c = 0; c < m; c++)
Explanation:
here is your answer!
hope it helps you ♡´・ᴗ・`♡
mark as brainliest☆
#RaziaSultana❀
Similar questions