Computer Science, asked by bhoomiwagh2006, 7 months ago

if a=3 what would be the value of a+=a++( java)

Answers

Answered by da4729204
1

Answer:

a + 3

Explanation:

the ++ operater first increment the value and then assigns it therfore a++ will give the value of a

a +=3 will give a+3

Similar questions