...
Code Block | ||
---|---|---|
| ||
int const max = 15;
int a[max]; /* invalid declaration outside of a function */
int const *p;
p = &max; /* legal to take the address of a const-qualified object */
|
...
...
Code Block | ||
---|---|---|
| ||
int const max = 15;
int a[max]; /* invalid declaration outside of a function */
int const *p;
p = &max; /* legal to take the address of a const-qualified object */
|
...