vote up 16 vote down star
18

To follow the example of The Definitive C++ Book Guide and List for C Books here is a wiki post for organization.

A tag search for "C" and "Books" returns no complete book list results as of writing this question. That search is here.

This post is to providing QUALITY books and an approximate skill level. Maybe we can add a short blurb/description about each book that you have personally read / benefited from. Feel free to debate quality, headings, etc.

Reference Style - All Levels

  1. The C Programming Language (also known as: K & R) - Brian W. Kernighan and Dennis M. Ritchie
  2. C: A Reference Manual - Samuel P. Harbison and Guy R. Steele

Beginner

  1. C Primer Plus - Stephen Prata
  2. C Programming: A Modern Approach - K. N. King

Intermediate

  1. Object-oriented Programming with ANSI-C - Axel-Tobias Schreiner
  2. C Interfaces and Implementations - David R. Hanson
  3. The C Puzzle Book - Alan R. Feuer

Above Intermediate

  1. Expert C Programming: Deep C Secrets - Peter van der Linden
flag

9 Answers

vote up 1 vote down

I'd like to make an anti-recommendation. Under no circumstances should you read any books by Herbert Schildt. In particular, you should stay away from C: The Complete Reference.

link|flag
vote up 4 vote down

C Traps and Pitfalls by Andrew Koenig. My copy is a bit dated but it still covers relevant topics that are not easily found elsewhere. In addition to the printed book there's an old PDF version online.

link|flag
+1 for link to PDF. – sigjuice Mar 26 at 3:09
vote up 1 vote down

Advanced C.: Food for the Educated Palate by Narain Gehani

One of my favourite C books, great on pointers, pointers to functions and a variety of advanced topic such as how stuff is stored in memory, dynamic memory, stack usage, function calling and parameter passing etc. Assumes you have a good grasp of 'C' to start with.

Hard to get

link|flag
vote up 2 vote down

"C Interfaces and Implementations" by David R. Hanson. It provides info on how to define a boundary between an interface and an implementation in C in a generic and reusable fashion. It also demonstrates this principle by applying it to the implementation of common mechanisms and data structures in C, such as lists, sets, exceptions, string manipulation, memory allocators and more.

link|flag
vote up 1 vote down

Here is a bunch of ACCU-reviewed books on Beginner's C (116 title) and Advanced C (76 titles). Much of these don't look to be on the main site anymore (which you can't browse by subject anyway).

link|flag
vote up 7 vote down

I added Deep C Secrets which I loved.

link|flag
I loved that book. Lots of good information and fun to read (like all of PvdL's books). – Matthew Crumley Feb 18 at 19:03
+1 on this one. Great read and lots of good info. – dwc Feb 23 at 22:36
vote up 1 vote down

If you don't mind introductory programming books that give lots of good tips and best practices, I recommend the Deitel & Deitel books such as C++: how to program. Not sure if the C one is in print. The index is very good and serves as a decent reference, just not fully comprehensive.

link|flag
Ugh. I'm not a fan of the Deitel books. They cover a wide variety of topics but are very shallow. – Dana Robinson Feb 23 at 23:02
vote up 1 vote down

Richard Heathfield of clc did this a long time back. Here. It is upto you if you want to copy-paste this here. And ACCU book reviews.

link|flag
vote up 2 vote down

I added two: "C: A Reference Manual", which I've always considered to be the "other" C reference book (it sits next to K&R on my shelf), and "C Primer Plus", which is the book that taught me C way back in its first edition. Both are essential books, in my opinion.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.