...
In this example, p
is incremented and then dereferenced, However, *p
in this example has no effect.
Code Block | ||
---|---|---|
| ||
int *p; *p++; |
...
...
In this example, p
is incremented and then dereferenced, However, *p
in this example has no effect.
Code Block | ||
---|---|---|
| ||
int *p; *p++; |
...