332
I got to avoid memory management for quite some time
(feddit.org)
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.
It'll be fun when you get to funny errors because you used
freed memory.When I was learning about linked lists and decided to use them in a project, I "removed" items by making the previous item's
nextpoint to this item'snext, except I misplaced a call tofreebefore using the fields, and it somehow still worked most of the time on debug builds, but on optimized builds it would cause a segmentation fault 100% of the time.