6_7_6_07_vla_local.c (112B)
1 int test_main(void) { 2 int n = 7; 3 int a[n]; 4 for (int i = 0; i < n; i++) a[i] = i * 7; 5 return a[n - 1]; 6 }