Thread: C Book Recommendations

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User LowWaterMark's Avatar
    Join Date
    Aug 2008
    Posts
    12
    I heartily recommend "Absolute Beginner's Guide to C (2nd Edition)" by Greg Perry.

    Take this with a grain of salt. I am an absolute beginner. I found the text to be well thought out, well written and at under 400 pages, not so dense as to be overwhelming. It is an introductory tutorial, not a tome on the C programming language.

    FWIW, I bought it, read it, finished it, and liked it.

  2. #2
    Registered User
    Join Date
    Aug 2008
    Posts
    5
    Not sure if this has been posted, but TCP/IP Sockets in C by Michael Donahoo and Kenneth Calvert is a brilliant book for sockets programming. Good even if you don't have much previous programming knowledge.

  3. #3
    Registered User
    Join Date
    Aug 2008
    Posts
    1

    Smile

    hello everybody,

    can i konw in which site i can download books related to c programming for free. if there are any suggesting sites then let me know please...

    bye,

    Naveen.

  4. #4
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    Quote Originally Posted by navdeep225 View Post
    hello everybody,

    can i konw in which site i can download books related to c programming for free. if there are any suggesting sites then let me know please...

    bye,

    Naveen.
    The first link in google when searching for "Free C Books" is:
    http://www.techbooksforfree.com/ccpp.shtml
    The page covers both C and C++, and there is more C++ than C on the page, but there are some C content there.

    I personally prefer to have "real" books, but that's personal opinion (and "real" books are rarely entirely free).

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  5. #5
    Dr Dipshi++ mike_g's Avatar
    Join Date
    Oct 2006
    Location
    On me hyperplane
    Posts
    1,218
    The first link in google when searching for "Free C Books" is:
    http://www.techbooksforfree.com/ccpp.shtml
    I went there; downloaded a book; it came in pdfs that must have been 1 or 2 pages big; took ages; tried to read a page; it was passsword protected; coulent find password; realised that even if i did find it I would have to spend hours entering passwords; got bored; deleted it

  6. #6
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    Quote Originally Posted by mike_g View Post
    I went there; downloaded a book; it came in pdfs that must have been 1 or 2 pages big; took ages; tried to read a page; it was passsword protected; coulent find password; realised that even if i did find it I would have to spend hours entering passwords; got bored; deleted it
    Seeing as the page links to other pages, quality of the content may vary greatly - and I never even tried to use any of those "books", so I can't say. I'm just doing the google that the OP should have done - it wasn't the only hit either.

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  7. #7
    Dr Dipshi++ mike_g's Avatar
    Join Date
    Oct 2006
    Location
    On me hyperplane
    Posts
    1,218
    Yeah its no biggie. Theres loads of free books around on the net, or at least loads of free linux books which is what I'm mostly reading atm.

  8. #8
    Registered User
    Join Date
    Sep 2008
    Posts
    10
    I'm nearly finished C For Dummies and it's been a very good read. It explains things very well, there's a bit of humour and the pace is very easygoing. Very good book for beginners with no experience like me.

  9. #9
    Registered User
    Join Date
    Apr 2006
    Posts
    65
    Would The Complete Reference of C be a good book for others who don't know how to program and never programmed before? I seen that book was said in here. I don't know if it's a good book for beginners.

  10. #10
    Technical Lead QuantumPete's Avatar
    Join Date
    Aug 2007
    Location
    London, UK
    Posts
    894
    I've never read it, but with a title that includes "Reference", it's probably not an ideal beginners book.
    "No-one else has reported this problem, you're either crazy or a liar" - Dogbert Technical Support
    "Have you tried turning it off and on again?" - The IT Crowd

  11. #11
    Registered User
    Join Date
    Sep 2008
    Location
    California
    Posts
    19
    Amazingly, no one has mentioned Numerical Recipes in C, 3rd edition (2007) Press, Teukolsky, Vetterling, and Flannery. This ties in to an earlier post where someone was asking for references on more specifics aspects of C.

    This is a tome, 1150 pages or so, that's devoted to scientific computing. Essentially, if you have a need to beat some numbers with a computer, this book will give not only methods to do it, but the most efficient methods and a discussion of their complexity, along with reference code that is easily used in order for your specific application.

    This is something worth looking at if you're thinking of doing solutions, to name a few examples, of linear algebraix equations (think matrix inversion, Cholesky decomps, etc.), interpolation and extrapolation, fast fourier transforms, partial diff eq's, integration, root finding, hypergeometric functions (whatever THAT is), discussions of sorting, selections, so forth and so on. I've found this book to be invaluable in doing my work.

    Again, this is a very specific reference, so don't look at getting this if you're trying to just learn C. I'm just throwing this out there in case some people have some need or interest in this kind of activity, and haven't already heard of this book.

  12. #12
    Registered User
    Join Date
    Sep 2008
    Location
    California
    Posts
    19
    Quote Originally Posted by Smattacus View Post
    Amazingly, no one has mentioned Numerical Recipes in C, 3rd edition (2007) Press, Teukolsky, Vetterling, and Flannery. This ties in to an earlier post where someone was asking for references on more specifics aspects of C.
    I noobed this pretty hard, the full name of the book is in fact NUMERICAL RECIPES, not Numerical Recipes in C. The author and edition info are correct.

  13. #13
    Registered User
    Join Date
    Oct 2008
    Location
    Pakistan
    Posts
    4
    can u ppl share me an idea abt how is Object Oriented Programing by Robert Lafore for a newbie???

  14. #14
    Registered User
    Join Date
    Nov 2008
    Location
    Greece,Athens
    Posts
    17
    Let Us C by Yashwant Kanetkar which is suggested here is a fantastic book.i have an assignment about reading a file of structures,copying them in a table , creating a new sorted one from it , searching in both files and showing them.It is really really helpful for me so far (managing strings,arrays of structures,files of records,pointers) and has accurate examples of codes and invaluable explanation on them.thanks for the recommendation guys.

  15. #15
    Registered User
    Join Date
    Dec 2008
    Posts
    36

    Lightbulb File Handling in C

    Hi,


    If you want a comprehensive and good example of file handling which involves all the things you have mentioned. Moreover, you will get some extras also. Just let me know if you want it.

    Quote Originally Posted by Griever View Post
    Let Us C by Yashwant Kanetkar which is suggested here is a fantastic book.i have an assignment about reading a file of structures,copying them in a table , creating a new sorted one from it , searching in both files and showing them.It is really really helpful for me so far (managing strings,arrays of structures,files of records,pointers) and has accurate examples of codes and invaluable explanation on them.thanks for the recommendation guys.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Language REFERENCE book recommendations?
    By DougDbug in forum C++ Programming
    Replies: 5
    Last Post: 03-10-2011, 02:26 AM
  2. any book recommendations?
    By NewnOT in forum Windows Programming
    Replies: 1
    Last Post: 06-21-2009, 02:12 PM
  3. JavaScript book recommendations
    By neandrake in forum Tech Board
    Replies: 2
    Last Post: 04-05-2009, 12:27 PM
  4. C++ Book Editions and Recommendations
    By cpudaman in forum C++ Programming
    Replies: 7
    Last Post: 02-10-2008, 11:52 AM
  5. My book recommendations for rank beginners ...
    By snakum in forum C++ Programming
    Replies: 4
    Last Post: 08-21-2002, 10:38 AM