C语言基础 -26 数组_ 二维数组定义/存储方式
二维数组的存储是按行存储,先存第一行,存完后再存储第二行。二位数组仍然是连续的一片存储空间,其中数组名代表数组的开头,a[0][0][root@localhost CH01]# cat arr_2d.c#include<stdio.h>#include<stdlib.h>#define M 2#define N 3int main(){ int a[M][N]; int i,j; for(i = 0