/* multiplication of a 3*3 matrix*/
#include<stdio.h>
main()
{
int a[3][3],b[3][3],c[3][3];
int i,j,k;
printf("enter the elements in A matrix:\n");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
scanf("%d",&a[i][j]);
}
}
printf("enter b matrix:\n");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
scanf("%d",&b[i][j]);
}
}
for(i=0;i<=2;i++)
{
printf("\n");
for(j=0;j<=2;j++)
{
c[i][j]=0;
for(k=0;k<=2;k++)
{
c[i][j] = c[i][j]+a[i][k] * b[k][j];
}
}
}
printf("multiplication matrix is:\n");
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
printf("%d\t",c[i][j]);
}
printf("\n");
}
}
Yes, do write. That's what you always have to do when you have got a homework-program.
#include<
write a program to multily 3*3 matrix.
Did you know that memory allocation is not needed to display the matrix? However, the C program is to find the sum of all the elements.
The matrix multiplication in c language : c program is used to multiply matrices with two dimensional array. This program multiplies two matrices which will be entered by the user.
Write a program in c++ that take input in a integer matrix of size 4*4 and find out if the entered matrix is diagonal or not.
A C program to square matrix is a math problem. In the math problem you write down all the outer boundary values of matrix in a circle, then write down the inner value.
Yes, do write. That's what you always have to do when you have got a homework-program.
matrix
#include<
A c program is also known as a computer program. A singular matrix has no inverse. An equation to determine this would be a/c=f. <<>> The determinant of a singular matix is zero.
i cant write
write a program to multily 3*3 matrix.
mano ni anda yarrr
Did you know that memory allocation is not needed to display the matrix? However, the C program is to find the sum of all the elements.
how to write a program for matrix multiplication in microprocesspr
for (i=0; i<IMAX; i++) for (j=0; j<JMAX; j++) c[i,j] = a[i,j] + b[i,j];