...
Code Block | ||||
---|---|---|---|---|
| ||||
void f(size_t n) { size_t a = sizeof(int [++n]); /* n must be incremented. */ size_t b = sizeof(int [++n % 1 + 1]); /* n need not be incremented. */ /* ... */ } |
Anchor | ||||
---|---|---|---|---|
|
...
...
Code Block | ||||
---|---|---|---|---|
| ||||
void f(size_t n) { size_t a = sizeof(int [++n]); /* n must be incremented. */ size_t b = sizeof(int [++n % 1 + 1]); /* n need not be incremented. */ /* ... */ } |
Anchor | ||||
---|---|---|---|---|
|
...