Thread: Good books for learning?

  1. #1
    GoofPrgram
    Guest

    Question Good books for learning?

    Hi, I'm looking for some good books that I can learn C with I some I like and was wondering if there are more out there?
    I have "The C Programming Lanauge", "C Programming for Dummies", and "Black Art of 3D Game Programming".

    Thanks

  2. #2
    Registered User
    Join Date
    Sep 2001
    Posts
    752
    Well, here's the thing...
    The C Programming Language does not cover how to program. It's really just a book that discusses the structure of the language. You need to already know how to program in order to read this book.
    C Programming for Dummies I know nothing about, so perhaps it is a good book... *shrug*.
    Black Art of 3D Game Programming I didn't actually read this book, but I get the feeling this is kinda like trying to learn Physics from Einstein's Relativity.

    Personally, I learned C from a book called "Programming in C", by a man named "King". Really though, it seems like pretty much all the textbooks say the same stuff, so it shouldn't matter which one, as long as you know you are using an introductary C programming book.

    C Programming for Dummies sounds like an okay book really, just go through it, program all the examples from cover to cover, and at the end of it, you'll hopefully be a C programmer. If for some reason, you find this book is not adequate, you should try asking friends who know C, or try your local library (if you have access to a University library, then I would most certainly go there). There are so many extra C books floating around that noone needs anymore, it shouldn't be too hard to grab something.
    Callou collei we'll code the way
    Of prime numbers and pings!

  3. #3
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    It's not really necessary to know how to program when starting with The C Programming Language. On school I learned C with this book.

    Study the examples, do the excercises, create your own programs. Try to understand how the language is constructed.

    After that you should read a book on programming, that is, a book on algorithms and datastructures. The further you come with understanding C and programming, you will discover: Programming is great!

  4. #4
    Registered User slick1537's Avatar
    Join Date
    Dec 2001
    Posts
    9

    C for dummies

    I'm reading C for dummies right now. It seems to be a good book to learn. It is just a little out dated though.

  5. #5
    Registered User
    Join Date
    Dec 2001
    Posts
    11

    Post Volume 2

    try "C For Dummies Volume 2"

  6. #6
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Read my post here .

    ...happy coding.
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  7. #7
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    I remember C For Dummies (both volumes)....they were good reads, and just a generally wonderful programming book series. I highly recommend it fro newcomers to the language

  8. #8
    Banned Troll_King's Avatar
    Join Date
    Oct 2001
    Posts
    1,784
    Personally, I learned C from ... a man named "King".
    Thanks.

    Personally I didn't care for the 'C For Dummies' books, that's why I mailed them to some programmer in California just to get them out of my sight.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Useful Links And Good Books
    By Hammer in forum Networking/Device Communication
    Replies: 18
    Last Post: 06-05-2017, 12:41 AM
  2. Good books for learning WIN32 API
    By Junior89 in forum Windows Programming
    Replies: 6
    Last Post: 01-05-2006, 05:38 PM
  3. Good books to learn windows programming?
    By RetroGamer1991 in forum Windows Programming
    Replies: 4
    Last Post: 06-17-2003, 01:06 PM
  4. Any good books on C ?
    By deadsam in forum C Programming
    Replies: 8
    Last Post: 05-28-2003, 10:38 AM
  5. Good C Books
    By mattz in forum C Programming
    Replies: 10
    Last Post: 12-05-2001, 11:59 AM