Thread: Freshman college student needs help

  1. #1
    Unregistered
    Guest

    Unhappy Freshman college student needs help

    I have a class on C++ programming and I am having trouble learning how to program in c++. I have no prior experience programming and I just can't seem to understand the text book I have (Deitel & Deitel C++ How to Program). I was wondering if anyone has any suggestions on books that may be easier to understand or something else that might help me learn this stuff. Thanks.

  2. #2
    Unregistered
    Guest
    Try looking up the FAQ on these forums, that should help a great deal.

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    8
    What are you having trouble grasping?? What can you not get?

  4. #4
    Unregistered
    Guest
    go through the first few lessons in the tutorial of the www.cprogramming.com page

    I've learned alot from the book "A computer science tapestry: exploring programming and computer science with C++", by Owen L. Astrachan. Easy to understand.

    Make sure when you are shown a program as an example you take time to read it. Basically, start in main and look at the first line and what it does, the go to the next line, whenever you see a function call like add(x, y), go to the function and read it, because that is the way it is executed, at the end of the function go back up to main right where the function is called.

    Most of all practice. If you are having problems writing a simple program from scratch, copy and paste a program you know works, and then try changing things about it to see what happens.

    Also, keep in mind that C++ is designed for organization and easy maintence. Try to space and tab things just like they are in example programs, it won't change the functionality of the program, but it wll make it alot easier to read.

    Do you have access to VC++? If not, I'd suggest looking for the bloodshed compiler, Dev-C++, or DJGPP. I think VC++ is the best, not to mention about the only Microsoft software other than OSs that is worth a darn.

    Good Luck

  5. #5
    Registered User
    Join Date
    Aug 2001
    Posts
    13

    HERE

    Hey. Look no further.

    http://firstpod.tripod.com/cpp21/

    The best online book I know!

    It taught me everything. The best way I think is to go through, and make lots and lots of notes. If you dont enjoy it you wont remeber anything.


    I also wouldnt mind helping you if you have any problems. Email me .. [email protected]
    Last edited by ACAC; 10-03-2001 at 12:58 PM.
    http://www.t-p-n.co.uk//
    check it out

  6. #6
    Registered User Dual-Catfish's Avatar
    Join Date
    Sep 2001
    Posts
    802
    Anyone know of any other online C++ books?

  7. #7
    Registered User
    Join Date
    Aug 2001
    Posts
    154
    Originally posted by Dual-Catfish
    Anyone know of any other online C++ books?
    http://www.viet-learn.com/books/prog...c++_21days.htm

  8. #8
    Mayor of Awesometown Govtcheez's Avatar
    Join Date
    Aug 2001
    Location
    MI
    Posts
    8,823

  9. #9
    Registered User ski6ski's Avatar
    Join Date
    Aug 2001
    Posts
    133

    Deitel & Deitel

    What problems are you having with the book? I have the book right here at my desk. Maybe I can look at the page and see what you are not understanding....
    C++ Is Powerful
    I use C++
    There fore I am Powerful

  10. #10
    Anti-Terrorist
    Join Date
    Aug 2001
    Location
    mming, Game DevelopmentCSR >&<>&2Minimization of boolean functions, PROM,PLA design >&0>&WA, USA guitar, dogsCommercial Aviation >&>>&USAProgramming
    Posts
    742
    For a strong overview of C++ for beginners try 'C++ For Linux' by Sams publishing. This is a C++ book it is not just for Linux by any means, works fine with MSVC++6 or VS.NET.

    The hard core C++ books are as follows:
    C++ Primer 3rd edition
    C++ Primer 3rd edition answer book
    The C++ Standard Library (Josuttis)
    The C++ Programming Language
    I compile code with:
    Visual Studio.NET beta2

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Updating in a sequential file?
    By Ronnyv1 in forum C Programming
    Replies: 1
    Last Post: 03-24-2009, 04:41 PM
  2. Database assignment is Killing me!
    By Boltrig in forum C Programming
    Replies: 2
    Last Post: 11-29-2007, 03:56 AM
  3. first year college student needs help!
    By stuartclancy in forum C++ Programming
    Replies: 3
    Last Post: 01-16-2006, 11:05 AM
  4. LinkList Sorting in C
    By simly01 in forum C Programming
    Replies: 3
    Last Post: 11-25-2002, 01:21 PM
  5. Creating a student grade book-how?
    By Hopelessly confused in forum C Programming
    Replies: 5
    Last Post: 10-03-2002, 08:43 PM