vote up 4 vote down star
2

I'm looking for good websites, and possibly books, to help me improve my C (not C++). I've been coding for over 10 years, mainly in Java, but my experience of C is minimal. I don't need something that explains what an 'if' statement does, I'm more interested in best-practices, and common pitfalls, with an emphasis on the things likely to trip up someone with my background (I'm thinking memory management and pointers).

flag

dupe of stackoverflow.com/questions/63617/… among many, many others – Neil Butterworth Jul 19 at 14:46
perhaps more relevant: stackoverflow.com/questions/562303/… – Christoph Jul 19 at 15:59
If I post K&R, will I get +5 too :) – Gab Royer Jul 20 at 3:30

9 Answers

vote up 2 vote down check

The two books in my office that people have or share are The C Programming Language by Brian Kernighan and Dennis Ritchie, and C: A Reference Manual, 5th edition by by Samuel Harbison. I own multiple copies of each myself for at home, and just about every good C programmer I've met has copies of these handy.

Expert C Programming: Deep C Secrets by Peter van der Linden is also a good book on the C language, its usage, and its evolution. I can easily recommend it. The Standard C Library by P.J. Plauger can also be an useful reference about the tiny, compared to Java, standard library that is common to C.

The C Programming FAQs is also available in printed edition. As well reviewing Writing Solid Code by Steve Maguire , Code Complete, 2nd edition Steven C. McConnell, Writing Secure Code by Michael Howard, Building Secure Software by Gary McGraw and John Viega, though these are mostly language agnostic, they discuss issues that are critical in writing robust, secure, and maintainable professional code particularly in regards to language features C lacks, such as advanced memory management - i.e. garbage collection, as well Secure Programming Cookbook for C and C++ is a handy cookbook style reference to write code that both isn't (easily) exploitable and can be more robust as a secondary benefit, and the book's corresponding website.

I didn't mention any embedded development related titles, although that is one of (several) areas that is still heavily using C, and is a demanding environment, both as a target platform, and typically the development / build-test environment.

I hope that helps.

link|flag
vote up 0 vote down

For challenges to put your new knowledge to the test, check out uva online judge and Projecteuler.net

http://uva.onlinejudge.org

link|flag
vote up 1 vote down

Apart from K&R, which is answer #1, I always found what I needed over here

link|flag
vote up 0 vote down

Take a look at the MISRA C coding standard.

It is a bit boring to read, but it helps to avoid the many ill-defined areas of C.

The PDF is available for 10£.

link|flag
vote up 1 vote down

this site is a good adjunct to the K&R book: c-faq.com

use it to see good, concise examples of how things like Pointer Arithmetic work

link|flag
vote up 5 vote down

I'd recommend this as well: Expert C Programming

link|flag
I agree. I reread it once every year. – Jonke Jul 19 at 15:20
vote up 1 vote down

I mostly program C, and the only two general books I own are:

  1. K&R, The C Programming Language
  2. Efficient C Programming (Heller IIRC)
link|flag
vote up 14 vote down

The C Programming Language, 2nd edition (Kernighan + Ritchie) is the ultimate resource. Small, easy to read, and a great reference.

alt text

link|flag
If you're an experienced developer, you should have no problems picking up the language from K&R. – Michael E Jul 19 at 14:57
vote up 6 vote down

The C Programming Language

Also known as the K&R book (after the authors). It's very concise and straight to the point and doesn't treat you like a beginner. Good examples are shown throughout to demonstrate syntax and concepts.

alt text

This book doesn't deal with the very latest version of C (C99) but does document ANSI C. Please see the following question regarding the book's content:

http://stackoverflow.com/questions/741012/is-the-c-programming-language-book-current

link|flag
You'll also need a copy of the 90 and/or 99 standard, but not necessarily in dead-tree format. – Steve Jessop Jul 19 at 14:20

Your Answer

Get an OpenID
or

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