I'm scheduled to take Systems Programming next semester, and it emphasizes C and Linux. I already have experience using Linux in a VM, but my C experience is one step past Hello World. So I'd like to try to get some C experience over winter break. I have Java and Python experience.

The department library has the K&R, 2nd Edition, would this be appropriate for a third-year student? What other books would you recommend?

link|improve this question

1  
You might also find my question Learning C from a background in C# relevant. – Justin Dec 2 '10 at 5:41
feedback

5 Answers

up vote 6 down vote accepted

K&R is a bit old, but it is the definitive C book. If you're in your third year, you should fly through it.

I wouldn't call it a beginner book (though it can be), but it's not exactly advanced either. However, reading it will tell you most everything you need to know to code in C. It's one of those books that everyone that codes (seriously) in C should read, regardless of their skill level. So yes, definitely read that one.

K&R will cover you on C background/experience. If you want to learn about C more specific to your coursework in systems programming, I'd just read (or skim) the textbook for the course.

link|improve this answer
I am definitely looking for more background than anything else, so I don't have to play catch up from day one. The text for the class is amazon.com/Understanding-UNIX-LINUX-Programming-Practice/dp/… – Jason Dec 2 '10 at 5:47
@Jason if you just want to learn the syntax, idioms, etc. of C, K&R is the place. If you read the whole book, it will give you a significant advantage in the C portion. As for the Unix/Linux part, I'd recommend you get a live CD (or better, an installation) of a Linux or BSD distribution (Ubuntu is good for beginners) and play around with it a bit. – Rafe Kettler Dec 2 '10 at 5:51
feedback

C by Example (By Noel Kalicharan)

link|improve this answer
will check this out – Jason Dec 2 '10 at 5:49
feedback

C: A Reference Manual

I would definitely recommend this as a supplement. It seems like there is about 5-10 ways to do everything in C - To know exactly what your typing means (not I am almost 90% sure this is going to do what I think) can make a huge difference in understanding.

link|improve this answer
feedback

Since you are already coming into this from a programming background, using C for you will just be adjusting to the new syntax. For that a reference book like K&R or C: A Reference Manual are great for that. However, learning C really means to understand it at a deeper level and bypass the common pitfalls that many new C programmers make; assuming arrays and pointers are the same thing, for example. To shore up these kinds of problems, I have been extremely satisfied with the following book:

Awesome C Book

The title of the book really is a bit misleading, you do not have to be anywhere near an C expert to fully understand and benefit from this book.

link|improve this answer
feedback

I came across this book recently, and I think it's a great book for beginners. It does not expect the reader to have any prior programming knowledge at all. So given that you already come from a programming background, it should be really easy to understand the flow of the book.

alt text

Also it is a bit cheaper than some other C books out there. Towards the end of the book, it has some chapters on Linux and Windows programming too!

It starts off with the basics and builds on them thereon. An excellent read with lots to learn, with tons of practical examples/exercises to help you learn.

Let us C - Yashwant Kanetkar

link|improve this answer
-1: the Kanetkar books are terrible - full of errors and misinformation. – Paul R Jan 15 '11 at 16:20
feedback

Your Answer

 
or
required, but never shown

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