Versions Compared

Key

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

...

are allowed, while statements like

Code Block
bgColor#FFcccc
i = ++i + 1;  /* i is modified twice between sequence points */
a[i = ++]i =+ i1;   

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

are not.

Non-Compliant Code Example

...