多维数组指针指向引用问题

a[i][j]=*(*(a+i)+j)


&a[i][j]=*(a+i)+j


a[3][4]

(*p)[4]

原文地址:https://www.cnblogs.com/xingxingye/p/14418060.html