0
1.5kviews
Write a program to compute matrix multiplication and transpose of a matrix.

Mumbai University> FE > Sem 2> STRUCTURED PROGRAMMING APPROACH

Marks: 10 M

Year: Dec 2016

1 Answer
0
1views
#include<stdio.h>
#include<math.h>
#include<conio.h>

main()
{
int a[10][10],b[10][10],c[10][10],t[10][10],m,n,p;
int i,j,k,sum=0;
printf("Enter number of rows of matrix 1: ");
scanf("%d",&m);
printf("Enter number of columns of matrix 1: ");
scanf("%d",&n);
printf("Enter number of columns of matrix 2: ");
scanf("%d",&p);
printf("Enter the elements of First matrix:\n");
//Read First Matrix
for(i=0;i<m;i++)
{
    for(j=0;j<n;j++)
    {
        printf("Enter …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.