32.分配数组的方式

1 int a[3][4];
2 int *p = (int[11]){ 0 };
3 int(*px)[4] = (int[5][4]){ 0 };
原文地址:https://www.cnblogs.com/xiaochi/p/8310131.html