求错!!!!感激
如题:#include<stdio.h>
void main()
{
int a[2][2],i,j;
printf("input the code\n");
for (i=0;i<=1;i++)
{
for (j=0;j<=1;j++)
scanf("%c",a[i][j]);
printf("\n");
}
#if a[2][2]={{a,a},{b,b}}
goto right;
#else
goto wrong;
#endif
right:
printf("b=3\n");
wrong:
printf("error\n");
}