Versions Compared

Key

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

...

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

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

...

Code Block
bgColor#ccccff
enum { max = 15 }; 
int a[max]; /* OK */
int const *p; 

p = &max; /* error: '&' on constant */

...