consider
int a =10;
c = a/a; //c becomes 1.
c= a* + a/a ; //c becomes 1.
c= 5+ a* + a/a ; //c becomes 15.
c = ++a + a++ - --a - a-- + a * + a/a ; //c becomes 10.
Can someone please tell me how the above works ? Especially the a* part. The first one is only for reference.
In this line:
The
+
is the unary plus operator. So it is equivalent toThe variable
a
is 10, so10 * 10/10
is10
, not1
. Then...is equivalent to
c = 5 + a * a/a
, soc
is now15
. ThenPre-increment changes
a
to11
. Post incrementa++
increments to12
but yields the old value11
, yielding22
so far. Then Pre decrement decrements to11
and the subtraction yields11
. Next, post decrement decrements to10
but yields the old value11
, and the subtraction yields0
. We already know whata * + a/a
is,10
.