Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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. Programming in C (3rd Edition) - Stephen Kochan
  2. C Primer Plus - Stephen Prata
  3. C Programming: A Modern Approach - K. N. King
  4. A Book on C - Al Kelley/Ira Pohl
  5. Learn C The Hard Way - Zed Shaw
  6. The C book - Mike Banahan, Declan Brady and Mark Doran
  7. Practical C Programming, 3rd Edition - Steve Oualline
  8. C: How to Program (6th Edition) - Paul Deitel & Harvey M. Deitel
  9. Head First C - David & Dawn Griffiths

Intermediate

  1. 21st Century C - Ben Klemens
  2. Object-oriented Programming with ANSI-C - Axel-Tobias Schreiner
  3. C Interfaces and Implementations - David R. Hanson
  4. The C Puzzle Book - Alan R. Feuer
  5. The Standard C Library - P.J. Plauger

Above Intermediate

  1. Expert C Programming: Deep C Secrets - Peter van der Linden
share|improve this question
27  
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
9  
Above Intermediate: Robert Sedgewick, "Algorithms in C". Top notch. – Jens Apr 13 '11 at 20:13
3  
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
4  
@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
2  
Harbison & Steele is definitely the best reference I have ever seen. I sincerely hope Sam (or someone else) will update the book for C1X. But: Even if it's a reference, I'd consider it unfit for beginners. In my experience, even intermediate programmers have trouble getting the details. It's great if you need to write a compiler for C, as the authors had to do when they started. – Johan Bezem Nov 9 '11 at 4:58
show 12 more comments

closed as not constructive by Dennis, Kay, Bo Persson, ajreal, Graviton Jul 25 '12 at 2:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

31 Answers

1 2

I added Deep C Secrets which I loved.

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

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.

share|improve this answer
9  
Couldn't agree more. Schildts' booke vary from poor to worse than uselesss. – ttt Oct 11 '10 at 8:56
27  
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
show 1 more comment

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.

share|improve this answer
4  
+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
4  
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

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

share|improve this answer

"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.

share|improve this answer

I added The Standard C Library by P.J. Plauger. It contains complete source code to an implementation of the C89 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.

share|improve this answer

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.

share|improve this answer
show 1 more comment

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.

share|improve this answer
6  
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 3 more comments

Programming in C (3rd Edition)

by

Stephen G. Kochan
This is a good general introduction and tutorial to beginner to intermediate C Programming.

Addendum: A new and interesting book for intermediate C programmers that should raise some discussion and possibly a little controversy is

21st Century C
C Tips from the New School

by

Ben Klemens

share|improve this answer

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 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).

share|improve this answer

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.

share|improve this answer
2  
I started reading this at some point, but stopped as I realized it was not teaching C the hard way, but rather the Linux way. Apparently someone believes those are synonymous. I would personally say: why handicap yourself by learning only a specific tool set? Focus on learning the programming language and program design, the tools are secondary at best. – Lundin Jun 4 '12 at 11:32

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).

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
show 1 more comment

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.

share|improve this answer
show 1 more comment

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.

share|improve this answer

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:

share|improve this answer

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

share|improve this answer

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

share|improve this answer

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."

share|improve this answer

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.

share|improve this answer
show 2 more comments

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.

share|improve this answer

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...

share|improve this answer

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

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

share|improve this answer

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

share|improve this answer
3  
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

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.

share|improve this answer

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.

share|improve this answer

Above Intermediate:

"Computer Programming: An Introduction for the Scientifically Inclined" Great book about scientific use of programming languages.

share|improve this answer
1 2

protected by Bo Persson Jul 24 '12 at 19:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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