this post was submitted on 09 May 2026
792 points (99.6% liked)

Programmer Humor

31781 readers
41 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 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] raspberriesareyummy@lemmy.world 2 points 1 month ago (1 children)

Mhh today I learned. That's wild. I would have thought that any sane person would allow only 7-bit ASCII for the source code, and forward-compatible character sets in strings (every standard iteration being allowed to add characters, but not remove them).

[–] mkwt@lemmy.world 3 points 1 month ago (1 children)

At the time that C was designed, ASCII was not a universal standard. It was one encoding competing with other encodings.

[–] raspberriesareyummy@lemmy.world 2 points 1 month ago

Ok that's a fair point I had overlooked. Thanks for explaining.