Advertisements
Advertisements
प्रश्न
Write a program to perform matrix multiplication by passing input matrix to the function and printing resultant matrix.
उत्तर
Program :-
Sourse code :
//Program for matrix multiplication using functions.
#include <stdio.h>
#include <stdlib.h>
void input(int m, int n, int a[m][n])
{
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
printf("%d, %d : ", i, j);
scanf("%d", &a[i][j]);
}
}
}
void print(int m, int n, int a[m][n])
{
int i, j;
for (i = 0; i < m; i++) {
for (j = 0; j < n; j++) {
printf("%3d ", a[i][j]);
}
printf("\n");
}
}
void multiply(int m, int n, int p, int a[m][n], int b[n][p], int c[m][p])
{
for (int i = 0; i < m; i++) {
for (int j = 0; j < p; j++) {
c[i][j] = 0;
for (int k = 0; k < n; k++) {
c[i][j] += a[i][k] * b[k][j];
}
}
}
}
void main()
{
int r1, c1, r2, c2;
printf("Row and column for matrix #1 :\n");
scanf("%d %d", &r1, &c1);
printf("Row and column for matrix #2 :\n");
scanf("%d %d", &r2, &c2);
if (r2 != c1) {
printf("The matrices are incompatible.\n");
exit(EXIT_FAILURE);
}
int mat1[r1][c1], mat2[r2][c2], ans[r1][c2];
printf("Enter elements of the first matrix.\n");
input(r1, c1, mat1);
printf("The elements of the first matrix are :\n");
print(r1, c1, mat1);
printf("Enter elements of the second matrix.\n");
input(r2, c2, mat2);
printf("The elements of the second matrix are :\n");
print(r2, c2, mat2);
multiply(r1, r2, c2, mat1, mat2, ans);
printf("The product is :\n");
print(r1, c2, ans);
getch( );
}
Row and column for matrix #1 : 2 2 Row and column for matrix #2 : 2 2 Enter elements of the first matrix. 0, 0 : 1 0, 1 : 17 1, 0 : 25 1, 1 : 30 The elements of the first matrix are : 1 17 25 30 Enter elements of the second matrix. 0, 0 : 74 0, 1 : 89 1, 0 : 3 1, 1 : 65 The elements of the second matrix are : 74 89 3 65 The product is : 125 1194 1940 4175 |
APPEARS IN
संबंधित प्रश्न
Write the output of following code:
#include<stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>25);
printf(“%d\n”,val);
return 0;
}
Write a program to validate whether accepted string is palindrome or not.
Write a program to find transpose of matrix without making use of another matrix.
Define structure consisting of following elements
1. student roll_no
2. student name
3. student percentage
Write a program to read records of 5 students of and display same.
State True or False with reason.
while(0); is an infinite loop.
WAP to print the sum of following series.
1+22+33+………+nn
Write a program to display following pattern:
1
232
34543
4567654
567898765
WAP to print all possible combination of 1,2,3 using nested loops.
Write a program for finding sum of series 1+2+3+4+…….upto n terms.
Explain continue and break statements with the help of suitable examples.