...
| Code Block | ||
|---|---|---|
| ||
int *p; p++; |
| Wiki Markup |
|---|
If the intent was to increment the value referred to by {{p}}, then parentheses can be used to ensure {{p}} is dereferenced then incremented \[[EXP00-A.|EXP00-A. Use parentheses for precedence of operation]\]. |
| Code Block | ||
|---|---|---|
| ||
int *p; (*p)++ |
...