InterviewSolution
Saved Bookmarks
| 1. |
A-=++a-++a+5A=7operator in Java |
|
Answer» They both increment the NUMBER. ++i is equivalent to i = i + 1 . ... Both increment the number, but ++i increments the number before the CURRENT expression is evaluted, whereas i++ increments the number after the expression is EVALUATED...... |
|