@samaira-P4RsEf
•
Oct 22, 2024
Oct 22, 2024
1.2K
find the error in this program
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,a[3][3],b[3][3],ch,c[3][3];
printf("\n enter the elements of first matrix: ");
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
scanf("%d",&a[j]);
printf("\t%d",a[j]);
}
printf("\n");
}
printf("\n enter the elements for the...