-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSA 6.5.cpp
More file actions
27 lines (27 loc) · 817 Bytes
/
Copy pathSA 6.5.cpp
File metadata and controls
27 lines (27 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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++)
for (d = 0; d < n; d++)
{
scanf("%d", & first[c][d]);
}
printf ("Enter the elements of second matrix\n");
for (c = 0; c < m; c++)
for (d = 0; d < n; d++) scanf("%d", & second[c][d]);
printf ("Sum of entered matrices:-\n");
for (c = 0; c < m; c++)
{
for (d = 0; d < n; d++)
{
sum[c][d] = first[c][d] + second[c][d];
printf("%d\t", sum[c][d]);
}
printf ("\n");
}
return 0;
}