The Little Book of C
ghostrss
65 points
19 comments
March 26, 2026
Related Discussions
Found 5 related stories in 51.3ms across 3,471 title embeddings via pgvector HNSW
- Why does C have the best file API maurycyz · 95 pts · March 01, 2026 · 54% similar
- Linux Applications Programming by Example: The Fundamental APIs (2nd Edition) teleforce · 58 pts · March 20, 2026 · 51% similar
- Almighty Lisp: Lisp and Emacs Essentials Book nemoniac · 59 pts · April 02, 2026 · 49% similar
- Little Free Library TigerUniversity · 100 pts · March 01, 2026 · 46% similar
- Typst Examples Book slow_typist · 28 pts · March 06, 2026 · 46% similar
Discussion Highlights (8 comments)
i_am_proteus
Another very fine online reference for someone new to C is Beej's Guide to C Programming: https://beej.us/guide/bgc/ (Here is a reference to K&R, the standard first reference to C, because I am obligated to make such a reference.)
user982
Previously: https://news.ycombinator.com/item?id=45448525
threethirtytwo
Ai is getting really good. I can’t tell the difference anymore.
androiddrew
Wish they had this for zig
smusamashah
I wonder how many hallucinated wrong facts are in there. It looked like a good resource until I learned its LLM generated. https://news.ycombinator.com/item?id=45479268
robviren
I wish someone spoon fed me how to add path for C compilers in Windows back in the day. We lose a good 90% of people to installing C from ever learning C. Feel like godbolt or an online compiler might be a reasonable starting place these days. C is amazing but can be so punishing early on compared to stupid opening up any text editor on earth and writing an HTML file. Not advocating for more JS learning but it's hard to beat the getting started on that.
agrishin
The fact that it's AI generated is simultaneously thrilling and frightening. Especially considering that some AI Agents might be trained on that.
JSR_FDED
The author is right about C leading to better understanding of computers, OSes and other languages. For me a breakthrough moment was when I saw my C code interleaved with the generated assembly. Registers, calling conventions, calling OS functions…all laid bare!