this post was submitted on 09 May 2024
445 points (92.2% liked)

Programmer Humor

32197 readers
227 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] fluckx@lemmy.world 2 points 5 months ago (1 children)

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.

[–] SpaceNoodle@lemmy.world 5 points 5 months ago (1 children)

No.

++p returns incremented p.

p += 1 returns incremented p.

p = p + 1 returns incremented p.

p++ returns p before it is incremented.

[–] fluckx@lemmy.world 3 points 5 months ago

Right. So i had them the other way around. :D

Thanks for clarifying.