Needing Postfix Explanation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Needing Postfix Explanation

I don't understand the concept of postfix.

13th Nov 2019, 11:37 PM
CodetMajor
3 Answers
+ 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
14th Nov 2019, 6:10 AM
Ipang
+ 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
14th Nov 2019, 12:57 AM
Jnn
Jnn - avatar
+ 1
What is this typically used for?
14th Nov 2019, 2:22 AM
CodetMajor