@[email protected] to Programmer [email protected]English • 10 months agogot himlemy.lolimagemessage-square134fedilinkarrow-up1500arrow-down141
arrow-up1459arrow-down1imagegot himlemy.lol@[email protected] to Programmer [email protected]English • 10 months agomessage-square134fedilink
minus-square@[email protected]linkfedilink5•10 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@[email protected]linkfedilink3•10 months agoRight. So i had them the other way around. :D Thanks for clarifying.
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.