Find the value of a, b and c after execution in JAVA if a=12, b=13 and c=11 a=++a+b+++c
Answers
Answered by
2
Answer:
a=12, b=13, c=11
a=13+13+11
=37
a=37
When ++ is inserted before the variable, the value changes immediately but if it is inserted after the variable, the value changes after use.
Thank you
PLS MARK IT BRAINLIEST
Similar questions