Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

p = &max; /* legala toconst-qualified takeobject thecan addresshave ofits a const-qualified objectaddress taken */

Most C compilers allocate memory for const-qualified objects.

...