0
Needing Postfix Explanation
I don't understand the concept of postfix.
3 Respostas
+ 2
Please avoid writing sentence or question in the Relevant Tags section. Tags are used by search feature to find matches by tag similarities. Use of irrelevant words in tags reduce the chance for good search results.
For the next time, follow this guide to posting a question 👍
https://www.sololearn.com/Discuss/333866/?ref=app
+ 1
For example the increment postfix for int i: i++
When you call i++ it returns the old value of i and increases i after that.
int i = 3;
int x = i++; //x =3
int y = i; //x= 4
+ 1
What is this typically used for?