A sequence point is a used in imperative languages to define when side-effects can occur as expressions are evaluated. In C99 standard, sequence points are defined as:
- The end of an expression
||, &&, ?:, and comma operators
- at a function call (after all arguments have been evaluated and before the actual call)
The standard also explicitly states that (Sec 6.5 #2):
Between the previous and next sequence point an object shall have its
stored value modified at most once by the evaluation of an expression.
Furthermore, the prior value shall be accessed only to determine the
value to be stored.
The footnote on the page notes that the following expressions are rendered undefined by this rule:
a[i] = i++
i = ++i + 1
This means that we cannot change the value of i more than once in the example expression you've given because the only sequence points are before the line and at the end of the line. Consequently, the line of code you've given is undefined.