"srinivas reddy" <srinivasreddy_m@yahoo.com> wrote in message news:ff8ef364.0307071740.d4d59a5@posting.google.com...
So when I say x++, does this sequence get executed?
t = x;
x += 1;
return t;
Conceptually, but not necessarily in sequence. All you know when you do x++
is that the value of the expression is the value at x prior to the expression and
that some time prior to the next sequence point x will be incremented.
.
|