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
[โ€“] 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.