Thread: Was wondering if this book is any good!

  1. #1
    Registered User
    Join Date
    Oct 2007
    Posts
    20

    Was wondering if this book is any good!

    Its called "Fundamentals of C++" by Lambert

  2. #2
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    Published in 2001? It might be a little old.

  3. #3
    Registered User
    Join Date
    Oct 2007
    Posts
    20
    has that much in the programming world changed since then?

  4. #4
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    No, but many books that were published only a couple years after the standard was released don't use many of the features of the standard library.

    I found a table of contents that didn't look too bad, though, so it's hard to say without seeing the actual book.

  5. #5
    Registered User
    Join Date
    Oct 2007
    Posts
    20
    Well it cant be old cause it shows to use /n; rather than endl;

  6. #6
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    What does \n versus endl have to do with being old? Both options have been available for a long time.

    I downloaded the student material from http://www.course.com/catalog/produc...538-69558-9#DL, and it looks worse than I thought, but I'm not sure if that code is related to the book.

    Does the code use <iostream.h>? If so, it is very old. Does it is apvector? If so, you might not want to use that to learn. Does it use C style strings?

    Maybe you could post a sample program from it?

  7. #7
    Registered User hk_mp5kpdw's Avatar
    Join Date
    Jan 2002
    Location
    Northern Virginia/Washington DC Metropolitan Area
    Posts
    3,817
    Couldn't find any reference to that book at the ACCU's book review site.
    "Owners of dogs will have noticed that, if you provide them with food and water and shelter and affection, they will think you are god. Whereas owners of cats are compelled to realize that, if you provide them with food and water and shelter and affection, they draw the conclusion that they are gods."
    -Christopher Hitchens

  8. #8
    Registered User
    Join Date
    Oct 2007
    Posts
    20
    Well that address is not the book though.heres address http://www.course.com/catalog/produc...TOKEN=45114524 I meant to say "Fundamentals of C++ Understanding Programming and Problem Solving". Heres a sample.......

    // Program file: chbook.cpp
    // This program updates a checkbook.

    #include <iostream.h>
    #include <iomanip.h>

    int main ()
    {
    double starting_balance, ending_balance, trans_amount;
    char trans_type;

    etc..............

  9. #9
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    Bad. That uses the pre-standard header files. Some modern compilers don't even provide them anymore.
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

  10. #10
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    >> #include <iostream.h>
    That's how you know the book is really out of date. That header is pre-standard and doesn't work at all on some modern compilers.

    You'd learn something if you read it, but there are much better books out there that won't teach you old/bad habits that you'll have to break if you continue programming.

  11. #11
    Registered User
    Join Date
    Oct 2007
    Posts
    20
    K well that book was borrowed from school.........btw I am wanting/thinking of going to college in computer science for computer engineering and software engineering and was wondering if I would need to learn C++?

  12. #12
    Registered Abuser
    Join Date
    Sep 2007
    Location
    USA/NJ/TRENTON
    Posts
    127
    >was wondering if I would need to learn C++?

    uh let's say yes for that one!

  13. #13
    Registered User
    Join Date
    Oct 2007
    Posts
    66
    I have a book called Practical C published in 1991, with minor corrections in 1992. It focuses on good programing style, I wonder how much has changed since then in terms of style
    "When your work speaks for itself - don't interrupt!"

    -Samantha Ingraham.

  14. #14
    Registered Abuser
    Join Date
    Sep 2007
    Location
    USA/NJ/TRENTON
    Posts
    127
    I don't care what anyone says,

    C/C++ created the WORLD!!!

  15. #15
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    You do not need to learn C++ before going to college and getting one of those degrees. If you know which university you want to go to and if you know that it uses C++ in its classes, then it could help to start learning on your own. I would find out what books that college (or any local university you'd consider going to) uses.

    If they teach Java, then learning C++ could be beneficial, but it might be better to try to learn Java on your own instead.

    C, C++ and Java are all different languages. If you want to learn one, pick one and go for it, it can't hurt.

    The style of programming is different in C and in C++, so if you're going to learn C++, don't read the book on C style.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. A good C++ Reference book
    By tiachopvutru in forum C++ Programming
    Replies: 5
    Last Post: 05-13-2008, 04:47 PM
  2. Good vectors/planes book
    By jverkoey in forum A Brief History of Cprogramming.com
    Replies: 4
    Last Post: 11-19-2005, 02:43 PM
  3. Good C book?
    By nizbit in forum C Programming
    Replies: 19
    Last Post: 12-18-2004, 11:23 AM
  4. Lookinf for a good NON beginner book
    By Unregistered in forum C Programming
    Replies: 5
    Last Post: 08-30-2002, 07:17 PM