You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
++ and -- should work on any expression for which exp += 1 is legal.
From the C standard: "The expression ++E is equivalent to (E+=1)."
And += supports either: pointer += integer or: arithmetic += arithmetic.
The text was updated successfully, but these errors were encountered:
tstreiff
added a commit
to tstreiff/ppci-mirror
that referenced
this issue
Jul 1, 2020
++ and -- should work on any expression for which exp += 1 is legal.
From the C standard: "The expression ++E is equivalent to (E+=1)."
And += supports either: pointer += integer or: arithmetic += arithmetic.
The text was updated successfully, but these errors were encountered: