...
Code Block | ||
---|---|---|
| ||
a = 0 + b[1]; |
Or it may legally result in the following outcome:
...
Code Block | ||
---|---|---|
| ||
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.
...