if z=5
what is z + = z++ + ++z in java
Answers
Answered by
0
Answer:
here's your answer
Explanation:
z=z++ is a programmer's error -- what it does is increment z and then set z to its old value -- as a result it overwrites z with its old value and hence undoes the increment.
Similar questions