0
Explain different between ++i and i++
What is the difference between Increment and dicriment
3 Antworten
+ 5
++i increments and then evaluates, while i++ evaluates and then increments
0
++i is pre increment it means i+1 then evaluate, i++ is post increment it means first evaluate then i+1 and also use same method for decrement.
- 2
Hope this helps you...
https://www.sololearn.com/Discuss/1690694/?ref=app
Pls do search. Search bar will provide you lot of similar questions...