Versions Compared

Key

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

...

Code Block
bgColor#FFcccc
m = (((++n) < 0) ? -(++n) : (++n));  /* undefined behavior */

The resulting code also violates EXP30-C. Do not depend on order of evaluation between sequence points resulting in undefined behavior.

...