Computer Science, asked by drstaranee, 7 months ago

if z=5

what is z + = z++ + ++z in java​

Answers

Answered by rahulrajsinghchapar
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