指针 & 数组

✏️ 指针

✏️ 数组

int m[] = {1, 2, 3, 4, 5, 6, 7 ,8,9,0};
int (*p)[4] = (int(*)[4])m;
cout << p[1][2];

最后更新于