// 数组指针,行指针 int (*p)[10], m[4][10]; p = m; // 指针数组 int *p2[2], a[2][5]; for(int i = 0; i < 2; i++) p2[i] = a[i];