Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: VLA are illegal only in global context

...

Code Block
bgColor#FFCCCC
int const max = 15;
int a[max]; /* invalid declaration outside of a function */
int const *p;

p = &max; /* legal to take the address of a const-qualified object */

...