Can anyone explain post and pre increment more better? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Can anyone explain post and pre increment more better?

23rd Jan 2016, 7:02 AM
Mahendra Singh
Mahendra Singh - avatar
4 Answers
+ 3
ex1)$a = 2; $b = $a++; // $a=3, $b=2 (ex2)$a = 2; $b = ++$a; // $a=3, $b=3 in ex1, $b will just get the previous/original value of $a (which is 2), then assign new value to $a (becomes 3). in ex2, $b will get the incremented value of $a, not the original value (2 becomes 3), then assign the new/incremented value which is now 3 to $a;
28th Jan 2016, 6:12 AM
Garizalde R. Navat
Garizalde R. Navat - avatar
+ 2
why did the original value of $a in ex1 change? Tell me if i'm wrong. This is what i understand: ex1) $a = 4 ; $b = $a++; // $a=5, $b=4 ex2) $a = 6 ; $b = ++$a; // $a=7, $b=7
19th Sep 2016, 9:28 PM
jklasd09
jklasd09 - avatar
+ 1
//POST INCREMENT $x=1;$y=$x++; //x=2 and y=1 /*This is post increment because the value of x before increment will be inserted to y ($y=$x; //$x before increment x=1) first and the value of x will increase after inserting it value to y ($x++ ;//$x++ is equal to $x=$x+1)...*/ //PRE INCREMENT $x=1;$y=++x; //x=2 and y=2 /*This is pre increment because the value of x will be increased first ($x++ ;//$x++ is equal to $x=$x+1) ...After that ,the value of x will be inserted to y($y=$x //$x after increment x=2)...*/
19th Sep 2016, 8:07 PM
Hein Htut Aung
- 1
Good reply by Garizalde
16th Jun 2016, 7:30 PM
Mehar Shani