6_7_6_15_multidim_vla_local.c (107B)
1 int test_main(void) { 2 int n = 6; 3 int m = 7; 4 int a[n][m]; 5 a[n - 1][m - 1] = 42; 6 return a[5][6]; 7 }