03 — Stack Overflow and Stack Exchange¶
Stack Overflow was the C help canon for a decade. Post-2023 it has changed — traffic down, LLM-generated answers up, moderation stricter. It is still useful, but the way you use it must change. Use it as a searchable archive first, a Q&A forum second.
How SO has changed since 2023¶
LLM answers. A visible fraction of new answers are ChatGPT-cleaned; some are subtly wrong (bad
printfspecifiers, missingNULLchecks, wrong ownership semantics). Rule: verify against cppreference before pasting.Traffic decline. Question volume is down (Stack Exchange has published traffic dips post-ChatGPT). Fewer new answers, but the archive from 2010-2022 is still enormous and mostly good.
Moderation stricter. Duplicate questions closed fast. Beginner questions redirected to r/learnprogramming or the docs. This is fine — the archive absorbs them.
Codereview.stackexchange specifically¶
If you post one C project for review in M4 and one in M8, you will get free senior-engineer-quality feedback. Post an entire small program (100-300 LoC), not a snippet. Include your Makefile and a README.md describing your goal.
What most people get wrong about SO in 2026¶
They still Google → SO first. In 2026 that’s often not the best path for C: cppreference is faster, more accurate, and versioned by standard. Reserve SO for “how do people typically structure X” — which is where the archive of high-vote answers still crushes.
Return to README.md · Next: 04_hacker_news_and_lobsters.md