0
Postfix and Prefix Operator !
Can anyone explain about it in open. Now, I have understood all the concepts. But, increment and decrement operators ++var_name or var_name++ and var_name-- or --var_name ..... ...... are difficult to understand. pLZzz anyone explain it.
3 odpowiedzi
+ 12
Can you pLZzz use the search function.
https://www.sololearn.com/Discuss/407846/?ref=app
+ 4
https://www.sololearn.com/Discuss/729547/actually-i-am-not-getting-the-use-of-increment-or-decrement
+ 4
++a, will increment before , then save, and then return the value of a.
a++, will return original a, then increment, and then save.