#include<stdio.h>
int main(void)
{
int a[2][3] = {0,1,2,3,4,5};
int (*p)[3] = a-1;
for(int i=1; i<=2; i++){
printf("%d\n", *(p[i]));
}
return 0;
}
