Versions Compared

Key

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

...

Noncompliant Code Example (Dereference)

In this example, p is incremented a pointer increment and then dereferenceda dereference occurs. However, *p the dereference has no effect.

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

...