If x=5, y=7, z=3; Find the value of r= x++ + z % z ---y;
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:
Similar questions
English,
3 months ago
Math,
3 months ago
English,
3 months ago
Political Science,
7 months ago
Math,
7 months ago