#include
unsigned char aa[3][4]={{0,1,2,3},{3,4,5,6},{6,7,8,9}};
void test(unsigned char (*bb)[4])
{
int i=0,j=0;
for(i=0;i<3;i++)
{
for(j=0;j<4;j++)
{
printf("%d ",*(*(bb+i)+j));
// printf("%d ",bb[i][j]);
}
printf("\n");
}
}
int main(void)
{
test(aa);
}
阅读(955) | 评论(0) | 转发(0) |