I've known that primary operator (x++) is different form unary operator (++x) when combine with another operator in a statement.
But I wonder whether those two operator is same when leave them alone on the statement. I mean about compiled code, time to run, ... between:
++x;
and
x++;
Which x
is an integer variable.