@[email protected] to Programmer [email protected]English • 7 months agogot himlemy.lolimagemessage-square134fedilinkarrow-up1475arrow-down141
arrow-up1434arrow-down1imagegot himlemy.lol@[email protected] to Programmer [email protected]English • 7 months agomessage-square134fedilink
minus-square@SpaceNoodlelink3•edit-27 months ago(p += 1) resolves to the value of p after the incrementation, as does ( p = p + 1).
minus-square@fluckxlink2•7 months agoYes. p++ == p+= 1 == p = p + 1 are all the same if you use it in an assignment. ++p is different if you use it in an assignment. If it’s in its own line it won’t make much difference. That’s the point I was trying to make.
minus-square@SpaceNoodlelink5•7 months agoNo. ++p returns incremented p. p += 1 returns incremented p. p = p + 1 returns incremented p. p++ returns p before it is incremented.
minus-square@fluckxlink3•7 months agoRight. So i had them the other way around. :D Thanks for clarifying.
(p += 1) resolves to the value of p after the incrementation, as does ( p = p + 1).
Yes.
p++
==p+= 1
==p = p + 1
are all the same if you use it in an assignment.++p
is different if you use it in an assignment. If it’s in its own line it won’t make much difference.That’s the point I was trying to make.
No.
++p returns incremented p.
p += 1 returns incremented p.
p = p + 1 returns incremented p.
p++ returns p before it is incremented.
Right. So i had them the other way around. :D
Thanks for clarifying.