this post was submitted on 11 Feb 2024
302 points (98.4% liked)

Programmer Humor

32143 readers
79 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

Hacker News post about this: https://news.ycombinator.com/item?id=39309783 (source available)

you are viewing a single comment's thread
view the rest of the comments
[โ€“] Omega_Haxors@lemmy.ml 3 points 7 months ago (1 children)

Can you have two pointers pointing at each other?

[โ€“] olorin99@kbin.earth 4 points 7 months ago
void* ptr2 = &ptr1;
ptr1 = &ptr2;```