Possible Duplicate:
The Definitive C Book Guide and List

I'm reasonably experienced with C++ but now I'm about to be using plain C in an embedded environment and want to learn the C way of doing things, like how abstract data types are used instead of classes. I would most prefer the book which is the most popular and newest so that I fit in with other peoples way of doing things. Please let me know your recommendations. Sorry if this is in the wrong place as it is not strictly a question on how to program and thanks to anyone who responds.

link|improve this question

You're better off sticking with C++ good practices and emulating them in C, rather than converting to C's best practices. – DeadMG Jan 12 '11 at 10:37
feedback

closed as exact duplicate by Péter Török, Björn Pollex, sbi, Eimantas, Madhur Ahuja Jan 12 '11 at 11:01

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.

1 Answer

up vote 2 down vote accepted

The C Programming Language is a must, if you haven't read it. It's not a new book but probably the only book written by two prophets and C is the same C anyway. This is the best programming book I've ever read. I wish all languages were as small as C and all authors were as great as Kernighan and Ritchie.

link|improve this answer
feedback

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