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 (Second edition) - Brian W. Kernighan and Dennis M. Ritchie
  2. C: A Reference Manual - Samuel P. Harbison and Guy R. Steele
  3. C Pocket Reference (O'Reilly) - Peter Prinz, Ulla Kirch-Prinz

Beginner

  1. C Primer Plus - Stephen Prata
  2. C Programming: A Modern Approach - K. N. King
  3. A Book on C - Al Kelly/Ira Pohl
  4. Learn C The Hard Way - Zed Shaw
  5. The C book - Mike Banahan, Declan Brady and Mark Doran

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
  4. The Standard C Library - P.J. Plauger Above Intermediate

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

link|improve this question
9  
Not to belittle the question, which is good, but...most people take years to master K&R. There is more in there than you think. The thinness of the book is deceptive. – dmckee Jul 14 '09 at 21:32
1  
I wouldn't know. Right now I believe I did. – Leif Ericson Jul 14 '09 at 22:06
4  
Above Intermediate: Robert Sedgewick, "Algorithms in C". Top notch. – Jens Apr 13 '11 at 20:13
1  
If you are new to C, keep in mind that modern C is ANSI C and anything predating that standard (1989) may be wildly out of date. Shoot for the mid-90s or later. – Dana Robinson Jun 7 '11 at 1:28
2  
@Dhaivat I think not, be careful to jump on the K&R bandwagon. K&R does not address good program design nor good programming practice, mainly because it was originally written before anyone knew what good programming practice was. It does not mention which parts of the C language that are superfluous or even dangerous. The book is correctly listed as a reference manual, it should not be used for teaching/learning modern programming. – Lundin Aug 12 '11 at 7:45
show 4 more comments
feedback

31 Answers

1 2

I added Deep C Secrets which I loved.

link|improve this answer
2  
The title should be "Deep C-crets" – Dynamic May 1 at 0:35
show 2 more comments
feedback

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|improve this answer
7  
Couldn't agree more. Schildts' booke vary from poor to worse than uselesss. – Tim Ring Oct 11 '10 at 8:56
12  
It has been said that the price difference between the C89 standard (approx $130) and "The Annotated C Standard" (approx $30) reflects the added value of the annotations. – Bart van Ingen Schenau Nov 1 '10 at 20:29
feedback

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|improve this answer
3  
+1 for link to PDF. – sigjuice Mar 26 '09 at 3:09
1  
This is my favorite C book. He goes deep into pointers and explains it very clearly. – kirk.burleson Jul 4 '10 at 9:31
3  
A nice one. I smiled at that bit: " In most languages, an array with n elements normally has those elements numbered with subscripts ranging from 1 to n inclusive. Not so in C.". How things have changed... – Pavel Minaev Jul 16 '10 at 20:16
feedback

I can't believe nobody has mentioned the The C FAQ. Lot's of good answer's to many common C programming questions with lot's of good material for the beginner, intermediate and even a few advanced questions.

link|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

"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|improve this answer
feedback

To be honest, I learned most of that stuff by checking out the source code to real projects written in C (after reading K&R, of course). If you browse through a few C projects of appropriate size and quality, you'll quickly pick up on the standard ways to organize source and header files, and you'll see how "real" programmers use the preprocessor.

link|improve this answer
2  
I learned a lot from the Core Utils library of the GNU project: particularly look at ftp.gnu.org/gnu/coreutils, I found it very good. Particularly text handling ones like cat or wc, but others are very informative too. Look at them critically though, do not accept everything you see. – Dervin Thunk Jul 14 '09 at 22:44
show 2 more comments
feedback

I added The Standard C Library by P.J. Plauger. It contains complete source code to an implementation of the standard library along with extensive discussion. It was very influential to my C programming style. As a library it is much more accessible than, say, STL.

link|improve this answer
feedback

I think the knowledge you're looking for is to be found not in books about C but in books and articles about system design. These are fairly thin on the ground, unfortunately. You might consider

  • Abstraction and Specification in Program Development by Barbara Liskov and John Guttag (not the newer Java-based version by Liskov alone). It is an undergraduate text but has some ideas worth thinking about.

  • Books from the late 1970s and early 1980s by Yourdon and Myers on structured design (one is called Composite/Structured Design.

  • For an example of how to organize a big C project as a bunch of useful libraries, you can't beat C Interfaces and Implementations](http://www.cs.princeton.edu/software/cii/) by Dave Hanson. Basically Hanson took all the code he'd written as part of building Icon and lcc and pulled out the best bits in a form that other people could reuse for their own projects. It's a model of good C programming using modern design techniques (including Liskov's data abstraction).

link|improve this answer
feedback

I honestly don't think you will find any more "advanced" books than the ones you list, except when it comes to special areas like sockets, databases, GUIs etc. C is really not a very complicated language.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Problem Solving and Program Design in C (6th Edition) is an intermediate level book. If you have other C Advanced books then this is not an ideal book to buy but its definitely worth going through once.

link|improve this answer
feedback

Can't believe I don't see " Thinking in C" by Bruce Eckel here. A classy book, lucid language, simple thoughts and deep understanding. The book is totally worth it. Every page has worthy content and it never for once got boring for me. A smooth learning makes this book suitable for one and for all.

link|improve this answer
show 1 more comment
feedback

I've added reference style book.

C Pocket Reference (O'Reilly) - Peter Prinz, Ulla Kirch-Prinz

Its short & sweet. To the point without any excess details. I love it.

link|improve this answer
feedback

Having read the same books, hopefully I can help with a few more:

And finally a good cookbook-like one from comp.lang.c contributors:

link|improve this answer
feedback

Programming in C (3rd Edition) by Stephen G. Kochan

http://www.amazon.com/Programming-3rd-Stephen-G-Kochan/dp/0672326663

link|improve this answer
feedback

C in a Nutshell by Peter Prinz is an excellent book if you need reference for C99.

link|improve this answer
feedback

A book on C
A book on C programming
Advanced C
Beginning C, from novice to professional
C gui programming with QT4
C language reference manual
C programming
C traps and pitfalls
C programming in Linux
Expert C programming
Embedded software development with C
Numerical recipes in C
Programming in C
The C programming language
Writing bug free C code

The following is gotten from List of freely available programming books.
The new C standard - an annotated reference
Matters Computational: Ideas, Algorithms, Source Code, by Jorg Arndt
The C book
Thinking in C++, Second Edition
C++ Annotations
Software optimization resources by Agner Fog
Introduction to Design Patterns in C++ with Qt 4 (PDF)
Object Oriented Programming in C (PDF)
Beej's Guide to Network Programming
Also see: The Definitive C++ Book Guide and List

link|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

I added A Book On C by Al Kelley and Ira Pohl.

The third edition of this book has been my indispensable guide through the current C project I am working on. I haven't found a thing so far this book hasn't covered in great detail. My only teeny gripe is the lack of full code examples, there are only snippets of code where it is relevant. It may not be enough for someone new to programming, but is excellent for someone new to C.

link|improve this answer
feedback

beginner:

c in 21 days very good introductory stuff
beginning c from novice to proffesional .. Ivor Horton ,gives a very good explanation of pointers using lots of small but complete programs.

intermediate:

algorithms in c Robert Sedgewick ... gives you a real grasp of implementing algorithms in c ..very lucid and clear ... you will probably throw away all your algorithms books and keep this one.

expert:

Reversing: Secrets of Reverse Engineering Eldad Eilam , for those who want to test the limit of their ethics...

link|improve this answer
feedback

C Unleashed : is also a good book. Its not ideal or anything. But for intermediate programmers, its definitely worth practising programs written in this book.

link|improve this answer
feedback

Beginner: Applications Programming in ANSI C, by Johnsonbaugh & Kalin

Intermediate: Data Structures - An Advanced Approach Using C, by Esakov and Weiss

link|improve this answer
feedback

Learn C The Hard Way

Zed Shaw's tutorial for beginners who aim for modern practices, with a focus on safety and security.

The Alpha Version is available online.

I think Zed's preamble covers it better than I could:

How To Read This Book

This book is intended for programmers who have learned at least one other programming language. I refer you to Learn Python The Hard Way or to Learn Ruby The Hard Way if you haven't learned a programming language yet. Those two books are for total beginners and work very well. Once you've done those then you can come back and start this book.

For those who've already learned to code, this book may seem strange at first. It's not like other books where you read paragraph after paragraph of prose and then type in a bit of code here and there. Instead I have you coding right away and then I explain what you just did. This works better because it's easier to explain something you've already experienced.

Because of this structure, there are a few rules you must follow in this book:

  1. Type in all of the code. Do not copy-paste!
  2. Type the code in exactly, even the comments.
  3. Get it to run and make sure it prints the same output.
  4. If there are bugs fix them.
  5. Do the extra credit but it's alright to skip ones you can't figure out.
  6. Always try to figure it out first before trying to get help.

If you follow these rules, do everything in the book, and still can't code C then you at least tried. It's not for everyone, but the act of trying will make you a better programmer.

The book is not for the faint of heart: Chapter 5 - Exercise 4: Introducing Valgrind! But that is its strength; it does not try to shield you from the truth, but exposes the gory details right there and then and explains how to cope with them.

link|improve this answer
feedback

To be a C expert, you'd better read the "ISO/IEC 9899:1999 C standard". "Rationale for C99 standard" and "The New C Standard" may help you to understand the C standard better.

link|improve this answer
feedback

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|improve this answer
2  
I despise K&R. It's an ancient book espousing poor coding style. There are far better books out there. – Dana Robinson Jul 6 '11 at 18:23
show 2 more comments
feedback

Above intermediate: MISRA-C industry standard published and maintained by the Motor Industry Software Reliability Association. (C89)

Although this isn't a book as such, I would strongly recommend every experienced C programmer to read and implement it. MISRA-C was originally intended as guidelines for safety-critical applications in particular, but it applies to any area of application where stable, bug-free C code is desired (who doesn't want less bugs?). MISRA-C is becoming de facto-standard in the whole embedded industry and is getting increasingly popular even in other programming branches. There are two publications of the standard, one from 1998 and one from 2004, where the latter is the active, relevant one.

link|improve this answer
feedback

My favorite C book -- Pointers on C.(author: Kenneth A. Reek)

Many people said that the core of this book is pointer, and it throughout the whole book. It is correct. But I'd rather say that the "Pointers" in the book's name means "the guides"(see the cover of the book). The core of this book is not only pointer, but almost all key points on C, basis and advanced.

This book explains very clearly and lucidly, and it is suitable for beginners as well as experienced programmers. And there is a comment from Francis Glassborow, the chief of ACCU - "I'll try my best to recommend this book I've ever seen the best. The author knows the readers' need, and lay a good foundation for them. If you are learning the C Language but always pointless, please have a try this book."

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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