vote up 2 vote down star
2

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.

flag

1  
Take a look at this list: stackoverflow.com/questions/562303/… – ire_and_curses Sep 21 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 at 7:35
What Unix are we talking about? Solaris, BSD, Linux or something else? Or all of them? – Johan Sep 21 at 7:43

5 Answers

vote up 1 vote down check

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|flag
vote up -1 vote down

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|flag
Sure, Java does error handling for you, if by "handling" you mean "spews an incomprehensible 600-line backtrace and aborts". – caf Sep 21 at 7:53
2  
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 at 7:58
vote up 1 vote down

The Unix Programming Environment

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

by Kernighan and Pike, bringing Unix enlightenment since 1984!

link|flag
vote up 7 vote down

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|flag
This book is great. – alex tingle Sep 21 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 at 7:41
Stevens rocks in general. – phoebus Sep 21 at 8:57
1  
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 at 17:32
vote up 1 vote down

This is the Original ANSI C book for Linux

link|flag
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 at 7:26

Your Answer

Get an OpenID
or

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