-
Notifications
You must be signed in to change notification settings - Fork 0
/
1DArrayproduct.c
63 lines (56 loc) · 1.4 KB
/
1DArrayproduct.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
56
57
58
59
60
61
62
63
#include <stdio.h>
int matrix(int m, int i, int j, int array1[][m], int array2[][j])
{
int product = 0;
for (int k = 0; k < m; k++)
{
product = product + (array1[i][k] * array2[k][j]);
}
return (product);
}
int main()
{
int n, m, q, a, b;
printf("Enter the row and coloumn of first matrix : ");
scanf("%d%d", &n, &m);
a = m;
printf("Enter the row and coloumn of second matrix : ");
scanf("%d%d", &m, &q);
b = m;
while (a != b)
{
printf("Enter correct values for rows and coloumn : \n");
printf("Enter the row and coloumn of first matrix : ");
scanf("%d%d", &n, &m);
a = m;
printf("Enter the row and coloumn of second matrix : ");
scanf("%d%d", &m, &q);
b = m;
}
int array1[n][m];
int array2[m][q];
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
printf("Enter the [%d][%d] element of array1 : ", i, j);
scanf("%d", &array1[i][j]);
}
}
for (int i = 0; i < m; i++)
{
for (int j = 0; j < q; j++)
{
printf("Enter the [%d][%d] element of array2 : ", i, j);
scanf("%d", &array2[i][j]);
}
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < q; j++)
{
printf("%d ", matrix(m, i, j, array1, array2));
}
printf("\n");
}
}