int main () { int a [10][10]; a[3][2] = 8; printf ("%d\n", a[2][12]); }
Form: rechteckig, Adress-Rechnung:
int [M][N]; a[x][y] ==> *(&a + (N*x + y))