Versions Compared

Key

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

...

Code Block
bgColor#FFcccc
langc
/* i is modified twice between sequence points. */
i = ++i + 1;  

/* i is read other than to determine the value to be stored. */
a[i++] = i;   

Noncompliant Code Example

...