x=5,y=3 ,z=2 then what is the outcome of this expression z+= x++ ++x - y-- + --y 11
Answers
Answered by
0
Answer:
x = x++ + ++y; (1)
y = ++x + ++y; (2)
In (1) this is the following operations to be done.
i) ++y
ii) x = x+y
iii) x ++
In (2) this is the following operations to be done.
i) x ++
ii) y++
iii) y = x + y
Explanation:
hope this will help you
Similar questions