this post was submitted on 26 Feb 2024
707 points (95.7% liked)

Programmer Humor

25448 readers
1108 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Psythik@lemmy.world 13 points 1 year ago (4 children)

While we're at it, what the hell is -0 and how does it differ from 0?

For integers it really doesn't exist. An algorithm for multiplying an integer with -1 is: Invert all bits and add 1 to the right-most bit. You can do that for 0 of course, it won't hurt.

load more comments (3 replies)