What are must read books for entry level C programmer?
1–10 of 27 posts
Re: What are must read books for entry level C programmer?
#2Re: What are must read books for entry level C programmer?
#3Re: What are must read books for entry level C programmer?
#4For C: http://stackoverflow.com/questions/562303/the-definitive-c-b...
Also for C++: http://stackoverflow.com/questions/388242/the-definitive-c-b...
Re: What are must read books for entry level C programmer?
#5Short, easy to understand, but not over-simplified, and a practical, pragmatic approach to everything.
Re: What are must read books for entry level C programmer?
#6http://www.amazon.com/dp/0131774298/?tag=akhn-20
Talks about all the weird historical C design decisions.
# 21st century C programming
http://www.amazon.com/dp/0131774298/?tag=akhn-20
Discusses the language and some of the best practices.
Re: What are must read books for entry level C programmer?
#7If you Reside in India - SK Srivastava & Bagalurusamy[1]
Else - K N KING[2]
[1] - amazon.in/Programming-ANSI-C-Balagurusamy/dp/933921966X/ & http://www.amazon.in/C-Depth-Deepali-Srivastava/dp/818333048...
[2] - amazon.com/C-Programming-Modern-Approach-2nd/dp/0393979504
Re: What are must read books for entry level C programmer?
#8Re: What are must read books for entry level C programmer?
#9While it pre-dates ANSI C and contains a few quirks you wouldn't necessarily want in production code, I found the book to be a lucid and fantastic resource to help explain how data structures work in C, as it gives hands on applications through the building of a working piece of admin software (albeit a slightly outdated one!).
If you're aware of how pre-ANSI C differs from C89/99 et.al with regards to function and parameter declaration, it's worth buying a used copy on Amazon just to leaf through - there are copies going for a single cent (plus shipping) at the moment.
His first book 'Learning to Program in C' is also great reference to read alongside K & R (which should be mandatory reading for anyone looking to learn C, not necessarily for the code style or examples but to get a handle on the ethos of the language).
Re: What are must read books for entry level C programmer?
#10https://en.wikipedia.org/wiki/The_C_Programming_Language
Anecdotally:
Going into college, my only coding experience was in HTML and a month of fiddling with BASIC ten years earlier.
I picked this (required reading) up a month ahead of my first CS class and read the first few chapters on my own. Even though I didn't have a computer to compile on, it gave me a huge advantage going in compared to others who had never programmed before. (Though not nearly as much as those who had taken classes in high school.)
Edited to add:
It will give you a good introduction to the language, but to an older standard. I haven't written C since college. My possibly wildly incorrect understanding is that code written to this standard will compile and run as intended on more modern compilers and systems, but the book won't introduce you to more modern features and conventions.