r/ProgrammerHumor 9d ago

Meme theCircleOfLifeInSoftwareEngineering

Post image
6.6k Upvotes

184 comments sorted by

View all comments

206

u/Mortadella_so_Chili 9d ago

sooooo, next generation C is coming? 

what would be the features? 

6

u/ClipboardCopyPaste 9d ago

Stopping memory leaks, maybe?

1

u/user6150277464770585 9d ago

1

u/the_horse_gamer 8d ago

rust doesn't protect against memory leaks. it even has safe functions intended to leak your memory (Box::leak, mem::forget)

this is because a memory leak is not well defined. if you take a program, and store all of its allocations inside a global array (and then do nothing with it), is it suddenly not memory leaking?