Computer Science, asked by zaalvasania2102, 1 year ago

Pre-increment and Post-increment concept in C/C++?

Answers

Answered by abinashchaudhary939
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