Can someone plz make it more clear about x++ and ++x ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Can someone plz make it more clear about x++ and ++x ?

what's the main difference between these two ? plz make it more clear

12th Dec 2016, 3:21 AM
nabeer zahed chowdhury
nabeer zahed chowdhury - avatar
7 Answers
+ 4
@neetish raj In example you gave the output of y is coming 13 not 12. You can give it a try on code playground. Hope you make it clear and then post it.
13th Dec 2016, 7:46 AM
Rishabh Agrawal
Rishabh Agrawal - avatar
+ 2
x++ is post increment operator and ++x is pre incremental operator
12th Dec 2016, 3:29 AM
Sanket Deshpande
Sanket Deshpande - avatar
+ 2
when u encounter ++x, first increase x value with 1 then do any operations on that statement . hence called pre increment. when u encounter x++, first perform operations on that statement for x without bothering about increment but after that statement x value will be increment by 1. hence post increment example: x=5; y=++x + x++; y will be 12 as y=6 + 6 but after this statement x becomes 7 now answer this int x=6; int y=++x - x++ + ++x; cout<<y; cout<<x;
12th Dec 2016, 4:19 AM
Morpheus
Morpheus - avatar
+ 1
@neetish raj I referred to one of my books for the answer and found that this is compiler dependent and should not be used (multiple increment /decrement).
13th Dec 2016, 11:13 AM
Rishabh Agrawal
Rishabh Agrawal - avatar
0
@ Rishav agarwal, thx for pointing out this SoloLearn compiler error, it made my head scratch too much, I don't know why but SoloLearn s compiler does error here, where as the same code in my PC code blocks gives. 12, and Linux too. but the SoloLearn compiler is giving 13 (code is shared with name test). guyz u can check that out, with ur PC compiler s, so as far as I can tell my explanation is correct and example s too. but open to suggestions
13th Dec 2016, 8:07 AM
Morpheus
Morpheus - avatar
0
@rishabh @neetish I am having same doubt. This type of question has been asked in challenges and that's why I was doing it wrong all the time.
13th Dec 2016, 11:27 AM
Sagar
Sagar - avatar
- 2
nefore posting u must look if this question was asked before. u will get instant answer
12th Dec 2016, 6:46 AM
manish rawat
manish rawat - avatar