Versions Compared

Key

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

...

Code Block
bgColor#FFcccc
a = 0 + b[1];

Or it may legally result in the following outcome:

...

Code Block
bgColor#ccccff
j = i;
j++;
func(ij, ji);

Risk Assessment

Attempting to modify an object multiple times between sequence points may cause that object to take on an unexpected value. This can lead to unexpected program behavior.

...