I have this fantasy of becoming a really good C programmer, but I've found it very hard to find learning resources on tackling big C projects. I've learned C a few times (I forget the fundamentals, since I don't code big projects in C) from K&R, O'Reilly's Practical C, and A Book on C. However, none of these cover the existing Unix libraries, numerical issues (floating point errors, etc), Makefiles, advanced debugging with gdb, linking, etc. What's the best way to learn this stuff? And what's a good book that covers all of this?

And I'm not interested in C++, FYI.

link|improve this question

1  
Take a look at this list: stackoverflow.com/questions/562303/… – ire_and_curses Sep 21 '09 at 7:27
1  
Great for programming issues, but I think you need some additional book about the C tool set. Maybe some O'reilly books about the specific tools (make, gcc) in addition? – Roalt Sep 21 '09 at 7:35
What Unix are we talking about? Solaris, BSD, Linux or something else? Or all of them? – Johan Sep 21 '09 at 7:43
feedback

closed as not constructive by Lasse V. Karlsen Sep 20 '11 at 8:40

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

8 Answers

up vote 3 down vote accepted

you may want to look here
Although for the issues you pointed out i generally rely on internet resources.
I found this useful for understanding the C compilation system.

link|improve this answer
feedback

I would try Advanced Programming in the UNIX Environment by W. Richard Stevens. I haven't actually read this one (never felt the need, picked up what I know of UNIX/POSIX programming through other means), but his books are generally great.

link|improve this answer
This book is great. – alex tingle Sep 21 '09 at 7:25
Would this book prepare me to build, say, some statistical computation utilities? Or is it more angled towards system utilities, daemons, etc? – Vince Sep 21 '09 at 7:41
Stevens rocks in general. – phoebus Sep 21 '09 at 8:57
2  
This is a wonderful book, but probably not what Vince is looking for. From the description: "If you are an experienced C programmer with a working knowledge of UNIX, you cannot afford to be without this up-to-date tutorial on the system call interface and the most important functions found in the ANSI C library." – Mark Harrison Sep 21 '09 at 17:32
feedback

The Unix Programming Environment

http://cm.bell-labs.com/cm/cs/upe/

by Kernighan and Pike, bringing Unix enlightenment since 1984!

link|improve this answer
feedback

This is the Original ANSI C book for Linux

link|improve this answer
1  
He is probably done with the book you mentioned, as he told in his post that he read K&R .. :) – Mahesh Velaga Sep 21 '09 at 7:26
feedback

I think this book "Let Us C - Yashwant Kanetkar" will be a really good book to refer. It has a well patterned way of explaining the concepts of C programming language. Have a look at this

link|improve this answer
-1: the Kanetkar books are really, really shockingly bad, out of date, inaccurate and misleading. – Paul R Jan 15 '11 at 16:30
feedback

Not especially focused on C programming, but a sum of wisdom for UNIX/Linux programming in C is Eric Raymond's: The ART of UNIX programming.

link|improve this answer
feedback

Understanding UNIX/LINUX Programming: A Guide to Theory and Practice

This book provides an excellent introduction to Unix system programming in C and is one of the better Unix system programming books I've read. Many other books also cover the topic well, but they are more like manuals. This book is more readable and clearly explains how things work.

From Prentice Hall Companion Website:

This clear, readable text explains how Unix/Linux works and shows how to write programs that make full use of operating system services. The text explains all the major ideas of Unix programming:

  • file I/O
  • file systems
  • device I/O
  • the terminal driver
  • timers
  • signals
  • processes
  • pipes
  • stream and datagram sockets
  • network programming
  • POSIX threads
  • semaphores
link|improve this answer
feedback

You didn't give reasons why you want to learn C in 2009 but I suggest to reconsider. Computer languages have come a long way since C was introduced.

Have a look at Python, Java or C# (try Mono). They will make you much more productive since they solve all those basic tedious tasks that you need to waste your time on in C. Examples: Error handling, linking, memory management.

link|improve this answer
2  
Sure, Java does error handling for you, if by "handling" you mean "spews an incomprehensible 600-line backtrace and aborts". – caf Sep 21 '09 at 7:53
5  
I want to learn C because I know Python really well, R, php, perl, and a tiny bit of both lisp and erlang. C is the basis for Unix, python, perl, and R. I think it's more useful to learn to a language that will allow me to peek into the source of my favorite projects than a language to "get stuff done" at this point. Also, it's fast and will have a good effect on the way I think about computation in general. – Vince Sep 21 '09 at 7:58
feedback

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