C Board  

Go Back   C Board > General Programming Boards > C Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 01-02-2006, 05:22 PM   #1
Super Moderator
 
Join Date: Sep 2001
Posts: 4,680
C Book Recommendations

Use this thread to recommend books on C. Please include a description of what this is book is good for, and not good for, etc...
sean is offline   Reply With Quote
Old 01-03-2006, 06:15 AM   #2
cwr
Registered Luser
 
cwr's Avatar
 
Join Date: Jul 2005
Location: Singapore
Posts: 867
The C Programming Language by Brian W. Kernighan and Dennis M. Ritchie.

Good for: Learning the C Programming Language.

Not good for: Learning to program a VCR, learning general programming concepts.. Possibly not ideal if you've never done any programming before, but Your Mileage May Vary.
cwr is offline   Reply With Quote
Old 01-03-2006, 06:56 AM   #3
Registered User
 
Join Date: Aug 2005
Posts: 113
Code:
Let us C-5th edition
Yashwant Kanetkar
This book is best if you are programming for the first time.It does not assume any background knowledge of programming.It teaches C programming using a simple compiler like Turbo C. But once you have mastered basic features it unveils how modern programming world uses it under windows and linux.It contains lot of programming excercise and examples.But buy the latest edition(5th)
vaibhav is offline   Reply With Quote
Old 01-03-2006, 02:29 PM   #4
Registered User
 
Join Date: Jan 2006
Posts: 1
C How to Program by Deitel and Deitel

The books really nice for beginners to start out with a modern compiler like VC++ and starts from the basics. It also has special boxes for common errors performance tips portability tips etc.

Also they teach you a method to implement a problem. Then after they introduce us to a new topic(say arrays) the old problem is revisited and implemented using the new concept(arrays) and shows us how arrays has made the implementation more elegant.
This really helps in developing a coding style for beginners.

The only problem i found is that the book is its pretty thick.
aufather is offline   Reply With Quote
Old 01-04-2006, 10:50 AM   #5
Logic Programmer
 
logicwonder's Avatar
 
Join Date: Nov 2005
Location: Kerala, India
Posts: 52
Cool

Best Book for DATA STRUCTURES is

DATA STRUCTURES By Seymour Lipschutz

It includes 457 solved problems and algorithms well explained. Very useful for Data Structure Beginners.
__________________
L GIK wins!!!
Salutes from logicwonder
Enjoy programming
logicwonder is offline   Reply With Quote
Old 01-09-2006, 04:00 AM   #6
Registered User
 
Join Date: Dec 2005
Posts: 25
ANSI C - E . Balagurusumy

This is the best C primer book especially if you get hold of the latest edition. Especially good for learning the basics of the language as all possible syntax of any new function etc are given and the book is very vivid in nature .This however comes with a price as some advanced concepts are not mentioned at all .If you are trying to learn the C language (which is probably the most difficult part) I strongly suggest this book.

Other than that for data structures I suggest Data Structures using C by Tenebaum
ramayana is offline   Reply With Quote
Old 01-12-2006, 11:20 AM   #7
Registered User
 
Join Date: Oct 2005
Posts: 26
For german users:

C von A bis Z
All basics you have to know about C programming. With sourcecode-examples and lots of useful graphics.

also available as Open Book: www.pronix.de

There's also a Linux-Unix-Programming book and a book for Shell-Programming... (I haven't read them).
mabuhay is offline   Reply With Quote
Old 01-13-2006, 10:02 AM   #8
Tuxedos are good...
 
joeprogrammer's Avatar
 
Join Date: Jan 2006
Location: Canada
Posts: 495
I like this one

Try Visual C++ For Dummies. Only the first part is specific to Visual C++, and it goes right from the very begininning of programming, and then finishes with object-oriented.
joeprogrammer is offline   Reply With Quote
Old 01-13-2006, 10:57 AM   #9
It's full of stars
 
adrianxw's Avatar
 
Join Date: Aug 2001
Posts: 4,833
Quote:
Try Visual C++ For Dummies. Only the first part is specific to Visual C++, and it goes right from the very begininning of programming, and then finishes with object-oriented.
Of course, being C++ for Dummies, it teaches C++ not C...
__________________
Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.
adrianxw is offline   Reply With Quote
Old 01-13-2006, 03:45 PM   #10
Just kidding....
 
fnoyan's Avatar
 
Join Date: Jun 2003
Posts: 223
Hi

http://www.advancedlinuxprogramming.com/

As the name implies, the book aims to teach programming in the Linux environment and the codes inthe book are written in C. Good for people who want to learn basics of system programming under GNU/Linux.

The book can be downloaded as seperate PDF files (one PDF for each chapter) from the URL above.
fnoyan is offline   Reply With Quote
Old 01-14-2006, 08:00 PM   #11
Registered User
 
Join Date: Feb 2005
Posts: 19
Sam's Teach Yourself C for Linux Programming.

Well presented and good explanations for learning C.

Out of print but still findable on amazon.com
crypto_quixote is offline   Reply With Quote
Old 01-15-2006, 10:19 AM   #12
ex-DECcie
 
Join Date: Dec 2005
Posts: 125
Harbison & Steele, "A C Reference Manual"

I'm never far from my copies of K&R (previously mentioned in this thread) and Harbison & Steele's "A C Reference Manual"

It won't teach you HOW to program C, but it has all the information in one place, neatly accessible, and easy to read.

If you're just beginning, it may not seem helpful at first, but as you progress, I think you'll find it very nice to have.
fgw_three is offline   Reply With Quote
Old 01-23-2006, 10:52 AM   #13
Registered User
 
Join Date: Jan 2006
Posts: 1
Try out Advanced C Programming in Unix Environment ... its one of d best book of C in Linux environment
somsamge is offline   Reply With Quote
Old 01-29-2006, 09:23 AM   #14
EOF
 
Join Date: Aug 2005
Location: Constanta, RO, Europe
Posts: 46
Jamsa's C/C++ Programmer's Bible [Jamsa & Krander]

1500 'versets'; I've found it really useful
__________________
Two strings walk into a bar. The first one says, 'Bartender! Bartender! I want a drink!'. The second one says, 'Bartender! Bartender! I want a drink too! Blaaaaaaaaah eeeeeeeek yaaaaaaak oooooooh'. The first one says, 'Please excuse my friend. He isn't null term--'.
moonlord is offline   Reply With Quote
Old 02-01-2006, 11:19 PM   #15
kiddo
 
Join Date: Sep 2005
Posts: 8
C PEARlS by Yashwanth Kanethkar is good for some advanced c programming.
mitto123 is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
any book recommendations? NewnOT Windows Programming 1 06-21-2009 02:12 PM
JavaScript book recommendations neandrake Tech Board 2 04-05-2009 12:27 PM
C++ Book Editions and Recommendations cpudaman C++ Programming 7 02-10-2008 11:52 AM
Language REFERENCE book recommendations? DougDbug C++ Programming 3 01-18-2003 02:24 PM
My book recommendations for rank beginners ... snakum C++ Programming 4 08-21-2002 10:38 AM


All times are GMT -6. The time now is 11:34 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22