InterviewSolution
Saved Bookmarks
| 1. |
Find the value of a, b and c after execution in JAVA if a=12, b=13 and c=11 a=++a+b+++c |
|
Answer» a=12, b=13, c=11a=13+13+11=37a=37When ++ is inserted before the variable, the value CHANGES immediately but if it is inserted after the variable, the value changes after use.Thank YOUPLS MARK IT BRAINLIEST |
|