find the error in this program
#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 second matrix: ");
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
scanf("%d",&b[j]);
printf("\t%d",b[j]);
}
printf("\n");
}
printf("matrix operations\n1.addition\n2.subtraction\n enter ur choice: ");
scanf("%d",&ch);
switch(ch)
{
case 1:
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
c[j]=a[j]+b[j];
}
}
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
scanf("%d",&c[j]);
printf("\t%d",c[j]);
}
printf("\n");
}
break;
case 2:
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
c[j]=a[j]-b[j];
}
}
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
scanf("%d",&c[j]);
printf("\t%d",c[j]);
}
printf("\n");
}
break;
}
getch();
}
the program is not executing