Why does the following expression evaluate to 0?
i > --i
Suppose i = 5. Evaluating the expression from left to right, we evaluate the left operand (i) to get 5 and we evaluate the right operand (--i) to get 4. So the expression about should evaluate to 1. But when I compile it with gcc and run it, it always evaluates to 0. Is there a flaw in my thought process?