Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this example, p is incremented and then dereferenced, However, *p in this example has no effect.

Code Block
bgColor#FFCCCC
int *p;
*p++;

...