关于数组名和指针C程序
#include<stdio.h>int main()
{
void ch(int **t);
int i,j;
int a[3][3];
int **t;
t=a;
for(i=0;i<3;i++)
for(j=0;j<3;j++)
scanf("%d",*(t+i)+j);
ch(t);
}
void ch(int **t)
{
int i,j,max;
max=**t;
for(i=0;i<3;i++)
for(j=0;j<3;j++)
if(*(*(t+i)+j)>max)
max=*(*(t+i)+j);
printf("%d",max);
}
哪里错误了