Computer Applications
Evaluate the following if the value of x=7, y=5
x += x++ + x + ++y
Java Operators
114 Likes
Answer
x += x++ + x + ++y
⇒ x = x + (x++ + x + ++y)
⇒ x = 7 + (7 + 8 + 6)
⇒ x = 7 + 21
⇒ x = 28
Answered By
69 Likes
Evaluate the following if the value of x=7, y=5
x += x++ + x + ++y
114 Likes
x += x++ + x + ++y
⇒ x = x + (x++ + x + ++y)
⇒ x = 7 + (7 + 8 + 6)
⇒ x = 7 + 21
⇒ x = 28
Answered By
69 Likes