हिंदी

Write a Program to Multiply Two Matrices After Checking Compatibility. - Structured Programming Approach

Advertisements
Advertisements

प्रश्न

Write a program to multiply two matrices after checking compatibility. 

उत्तर

#include
#include
void main(){
int a[10][10], b[10][10],mul[10][10];
int i,j,c,r,n;
clrscr();

printf("Enter the number of columns:");
scanf("%d",&c);printf("Enter the number of rows:");
scanf("%d",&r);printf("Enter the elements of first matrix:");
for(i=0;i<c;i++)
{
for(j=0;j<r;j++)
{
scanf("%d",&a[i][j]);}}
printf("Enter the elements of second matrix:");
for(i=0;i<c;i++)
{
for(j=0;j<r;j++)
{
scanf("%d",&b[i][j]);
}
}
printf("\nThe Ma
trix after multiplication is:\n");
for(i=0;i<c;i++)
{
for(j=0;j<r;j++)
{
mul[i][j] = a[i][j]*b[i][j];
}
}
for(i=0;i<c;i++)
{
for(j=0;j<r;j++)
{
printf("%d\t",mul[i][j]);
}
printf("\n");
}
getch();

}
Output:Enter the number of columns: 3
Enter the number of rows: 3
Enter the elements of first matrix: 1 2 3 4 5 6 7 8 9
Enter the elements of second matrix: 1 2 3 4 5 6 7 8 9
The Matrix after multiplication is:1    4     916  25  3649  64  81
shaalaa.com
Array
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2018-2019 (December) CBCGS
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×