...
Code Block | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||
enum { max = 15 };
int a[max]; /* OK */
int const *p;
p = &max; /* error: '&' on constant */
|
...