Hacker News new | ask | show | jobs
by tahoemph999 2041 days ago
I came at this the other way. KnR was my first real book about programming. Next were Bentley. Most O'Reilly and like books are overly wordy and don't get to the meat of the issue for me.

I don't think KnR will make you a much better engineer. But it will give you a really strong boost into being a reasonable c programmer. And it does that well because it focuses on that.

1 comments

I have not written C in years but remember by heart their coding style in the book. The strcpy(s, t) they present is around 2 lines code looking something like this expression: `s++=t++`. (please don't code review here.. haha).

At that time I was writing verbose loops in class assignments to write similar functions. Looking their code made a strong positive impact. Their codes are poetic.

And the way they unfold topics in the book is so good. Structures and pointers often confusing many people I knew were natural in their book.