...
| Code Block | ||
|---|---|---|
| ||
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 | ||
|---|---|---|
| ||
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" |