forked from Bibeknam/programming-techniques
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix_sum.c
55 lines (44 loc) · 1.26 KB
/
matrix_sum.c
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int rows, columns, i, j;
int **matrix1, **matrix2;
if (argc != 3) {
printf("Usage: outputfile rows columns\n");
exit(1);
}
rows = atoi(argv[1]);
columns = atoi(argv[2]);
// allocate memory for matrices
matrix1 = (int**) malloc (sizeof(int*) * columns);
for (i = 0; i < columns; i++) {
matrix1[i] = (int*) malloc(sizeof(int*) * rows);
}
matrix2 = (int**) malloc (sizeof(int*) * columns);
for (i = 0; i < columns; i++) {
matrix2[i] = (int*) malloc(sizeof(int*) * rows);
}
// get matrices from user
printf("Enter the first matrix: \n");
for(i = 0 ; i < rows; i++)
for(j = 0; j < columns; j++)
scanf("%d", &matrix1[i][j]);
printf("Enter the second matrix: \n");
for(i = 0 ; i < rows; i++)
for(j = 0; j < columns; j++)
scanf("%d", &matrix2[i][j]);
// add two matrices
for(i = 0 ; i < rows; i++){
for(j = 0; j < columns; j++)
matrix2[i][j] = matrix1[i][j] + matrix2[i][j];
}
// display the result
printf("The sum of the matrix is :\n");
for(i = 0 ; i < rows; i++){
for(j = 0; j < columns; j++){
printf("%d ", matrix2[i][j]);
}
printf("\n");
}
return 0;
}