this post was submitted on 03 Oct 2025
30 points (100.0% liked)

History Memes

655 readers
807 users here now

A place to share history memes!

Rules:

  1. No sexism, racism, homophobia, transphobia, assorted bigotry, etc.

  2. No fascism, atrocity denial or apologia, etc.

  3. Tag NSFW pics as NSFW.

  4. Follow all Piefed.social rules.

Banner courtesy of @setsneedtofeed@lemmy.world

founded 4 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] acockworkorange@mander.xyz 4 points 23 hours ago* (last edited 23 hours ago)

In C/C++:

int a = 3;
if (a = 4) { printf("four");}
if (a == 3) { printf("three");}

Will yield four.