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
APPEARS IN
संबंधित प्रश्न
Write a program to calculate summation of series
1/1! + 2/2! + 3/3! +….+ n/n!
How to create array of structure variable and assign values to its members?
Define pointer and its use. Explain array of pointer with example. Write program to swap the values by using call by reference concept.
Write a program to create two integer of size 8 and 7. Initialize the arrays with random values. Sort the arrays in ascending order with the help of user defined function namely “sort array”. Merge these arrays with the help of another user defined function named “merge arrays” which returns a new array. Program should display the arrays before and after sorting, also the merged arrays.
Write a C program to
i. Create a 2D array [Matrix] [in main function]
ii. Write a function to read 2D array[Matrix]
iii. Write a function that will return true(1) if entered matrix is symmetric or false(0) is not symmetric.
iv. Print whether entered matrix is symmetric or not [in main function]
Write a program to sort given array in ascending order.
Comment on dynamic memory allocation. Write a program to read and store N integers in a Array, where value of N is defined by user. Find minimum and maximum members from the Array.