-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmatrix_multiplication.c
More file actions
57 lines (49 loc) · 1.2 KB
/
matrix_multiplication.c
File metadata and controls
57 lines (49 loc) · 1.2 KB
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
56
57
// [multiply two matrices]
/*
#include<stdio.h>
int main()
{
int a[5][5],b[5][5],c[5][5],m,n,i,j,p,q,k,sum = 0;
printf("Enter number of rows and columns of first matrix:\n");
scanf(" %d %d",&m,&n);
printf("Enter elements of first matrix:\n");
for (i = 0; i<m; ++i)
{
for (j=0; j<n; ++j)
scanf(" %d",&a[i][j]);
}
printf("Enter number of rows and columns of second matrix:\n");
scanf(" %d %d",&p,&q);
if (n != p)
printf("Matrices can't be multiplied.\n");
else
{
printf("Enter elements of second matrix:\n");
for (i = 0; i<m; ++i)
{
for (j=0; j<n; ++j)
scanf(" %d",&b[i][j]);
}
for (i = 0; i<m; ++i)
{
for (j = 0; j<q; ++j)
{
for (k = 0; k<p; ++k)
{
sum += a[i][k]*b[k][j];
}
c[i][j] = sum;
sum = 0;
}
}
printf("Product of two matrices:\n");
for (i = 0; i<m; ++i)
{
for (j = 0; j<q; ++j)
printf("%d\t",c[i][j]);
printf("\n");
}
}
return 0;
}
*/