...
Code Block | ||
---|---|---|
| ||
j = i; j++; func(i, j); |
Risk Assessment
Modifying 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.
...
...
Code Block | ||
---|---|---|
| ||
j = i; j++; func(i, j); |
Modifying 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.
...