vla.c 102 B

1234567
  1. int main() {
  2. static int x;
  3. char a[++x];
  4. a[sizeof a - 1] = 0;
  5. int N;
  6. return a[0];
  7. }