If a=5,b=9,calculate the value of a+=a++-++b+a
Answers
Answered by
8
Answer:
a+=5-10+6
a=7
Explanation:
at first value of a remains same bcz of postfix operator. After value of b increment by 1 and will be add with increment value of a ie, 5+1=6.
The result of this again added with new value of a.
Similar questions