Versions Compared

Key

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

...

Code Block
bgColor#FFCCCC
int const max = 15; 
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 */

...

Wiki Markup
\[[ISO/IEC 9899-1999|AA. C References#ISO/IEC 9899-1999]\] SectionsSection 6.3.2.1, "Lvalues, arrays, and function designators,"; Section 6.7.2.2, "Enumeration specifiers,"; and Section 6.10.3, "Macro replacement"