Pre-increment and Post-increment concept in C/C++?
Answers
Answered by
0
Pre increment ++i means first it will increase the value of i by one then it will print the value. Post increment i++ means first it will print the value of i then it increases the value of i by one.
Similar questions