+ 1
Why b variable is 11 not 10?
4 Answers
0
b = 12 + a-- / ++c - --a;
b = 12 + 3/6 - 1 (since a-- = 3 and a reduce to 2, so --a becomes 1, while 3/6 is integer zero.. )
So, b= 12 +0 -1
0
Gaurav Atreya But a-- shouldn't implement after = operator implements
0
No, a-- doesn't implement till the value of a has been used, that is occurrence of a-- not =
0
Thanks