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

History Memes

779 readers
1229 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 1 week ago* (last edited 1 week ago)

In C/C++:

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

Will yield four.