Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 144 Bytes

pointer-array.md

File metadata and controls

12 lines (8 loc) · 144 Bytes

指针 & 数组

✏ 指针

✏ 数组

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