It's undefined bahaviour.
Modifying a variable more than once between 2 sequence points is undefined behaviour.
For more
undefined behaviour wiki
sequence points wiki
ISO c99 : 5.1.2.3 Program execution
2
" Accessing a volatile object, modifying an object, modifying a file,
or calling a function that does any of those operations are all side
effects,11) which are changes in the state of the execution
environment. Evaluation of an expression may produce side effects. At
certain specified points in the execution sequence called sequence
points, all side effects of previous evaluations shall be complete and
no side effects of subsequent evaluations shall have taken place."
Therefore , In your case you are modifying a variable i which is being modified more than one time so according to standard , It's undefined bahaviour.