0
What is the difference between x++ and ++x in c++ programing
What is the difference between x++ and ++x in c++
2 Answers
+ 6
Roopesh. N
++x means first increase the value of x by 1 and then use it. whereas x++ means first use the value of x and then increment it's value by 1