Possible Duplicates:
The Definitive C++ Book Guide and List
The Definitive C Book Guide and List

What C/C++ books/tutorials would you recommend for a Python Programmer?

I've been lurking on python-dev for a while now and would really like to 'understand' the C/C++ discussions and diff mails that come across in the list.

I guess I'm mainly looking to familiarize the C/C++ syntax and 'concepts'.

EDIT: Clarification on C/C++, my reading tells me C++ is OOP strapped onto C (damn those Python vs X articles) .. I'm inclined towards C because CPython (and C extensions for Python) is where I want to be

link|improve this question

80% accept rate
2  
C and C++ are two different languages. Which do you want to learn first? CPython is written in C. – Matthew Flaschen Dec 29 '10 at 5:36
@Matthew Flaschen: I updated the question – Jeffrey Jose Dec 29 '10 at 5:45
@Billy ONeal: Thanks a great link. Thanks – Jeffrey Jose Dec 29 '10 at 5:46
In that case, check out The Definitive C Book Guide and List. – Matthew Flaschen Dec 29 '10 at 6:04
What exactly are you hoping to accomplish by studying this stuff? Maybe you'd rather just learn more about how computers work, in general? There are several 'lower levels' below C or C++ that can be explored... – Karl Knechtel Dec 29 '10 at 6:54
show 1 more comment
feedback

closed as exact duplicate by Billy ONeal, Matthew Flaschen, gnovice, Ben Voigt, dmckee Dec 31 '10 at 1:23

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Stroustrup - especially if you are already a programmer and don't need hand holding about what a variable is.

As the above comment says C isn't C++. Although C++ is (almost) a superset of C the thinking behind programming in C++ is now so different to C that the link between them is probably more harmfull than helpfull.

link|improve this answer
1  
I would disagree with the last sentence -- the ability to seamlessly call C from C++ is a major reason for C++'s general utility. – Billy ONeal Dec 29 '10 at 5:43
@Billy: Yes the ability to call C from C++ is important, but it is true that C++ has practically become alien to C if you are using the rich capabilities of C++ (templates, preprocessor programming, etc). – Brent Arias Dec 29 '10 at 5:50
@Brent: Calling C++ from C I would agree with you. But calling C from C++ works just fine. – Billy ONeal Dec 29 '10 at 5:55
But C++ isn't C like Objective C is similar to C. C++ is a separate language. Not that we add extra features to C and we get C++ like in case with Objective C. – kadaj Dec 29 '10 at 6:36
I meant to learn the language - knowing C and char* and pointer arithmatic is almost a stumbling block to thinking in iterators and streams – Martin Beckett Dec 30 '10 at 0:13
feedback

The best C book is The C Programming Language by K&R.

link|improve this answer
You're recommending a 22-year old book (first edition is older yet)? That's several versions of the C standard ago, K&R-style code won't even compile these days. – Ben Voigt Dec 30 '10 at 7:24
1  
Year doesn't matter when it comes to religion. The C Programming Language is the Bible of C religion :P – kadaj Dec 30 '10 at 9:04
@Ben: The new testament is only one standard out of date, most of the extant code is written in ansi c and the differences are not too huge. It's not a bad suggestion for decent programmers. A little terse for beginning programmers, however. – dmckee Dec 31 '10 at 1:22
feedback

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