Computer Science, asked by surendrasingh6397, 10 months ago

write a program in C language using functions, which add any two matrices of size 3*3.​

Answers

Answered by imraushanraaz
0

Explanation:

Here is the code for adding three different matrices.

#include <stdio.h>

int main()

{

int m, n, c, d, first[10][10], second[10][10],third[10] [10], sum[10] [10];

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

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

printf("Enter first matrix\n");

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

Mark me as a brainlist thankyou

Similar questions