a b
Why is (a) b, not a (b)
Isn’t the calculation order in C language from right to left?
Self-increment and self-decrement are both left-associative, and self-increment has a higher priority than addition, so it is (a) b
Self-increment and self-decrement are both left-associative, and self-increment has a higher priority than addition, so it is (a) b