

2·
8 hours agoMay I suggest avoiding recursive functions where possible? They are usually the ones overflowing your stack, duh.
May I suggest avoiding recursive functions where possible? They are usually the ones overflowing your stack, duh.
Ironic that you need a Google smartphone, isn’t it?
rabid commies
You’ve chosen the worst possible instance, LMAO.
Fun fact: the “Enshittification” article on Wikipedia has Reddit among the examples.
First time I’m hearing of the CQS. Wow, just wow. Dystopian shit.
New account experience on Reddit in 2025:
Fuck Steve Huffman and fuck his enshittified site.
I mean, in C too.
I used it when I wrote some throwaway C++ code working with SQLite. Since it had no RAII (and I had no intention of writing my own wrapper), I had to manually cleanup multiple resources somehow. If at least one resource failed to initialize, I had to deinitialize the ones that didn’t fail. It was either
goto
or a bunch of flags to track what is initialized.goto
looked more elegant.