also @ TechSpot: Blizzard talks Diablo 3 facts, nerfing and buffs for legendary items

TechSpot

how to learn c++

Discussion in 'Software Apps' started by gameguru, Aug 5, 2002.

Thread Status:
Not open for further replies.
  1. gameguru Newcomer, in training

    I have taken a 1 year course of c++ at school and am wondering where do i go from here. Is there any good online tutorials i can get or do i need to go buy a book? Anyway as far as i got was just barely how to do the basics in classes such as function overloading.
  2. gameguru Newcomer, in training

    By the way how do you post animation and/or pics on these forums?
  3. Rick TechSpot Staff

    Get a book and check out your User CP and signature. Adding images is as easy as adding an [IMG]
  4. erwin1978 Newcomer, in training

    In college, they lean on programming theories and algorithms. For the most part, you'll be learning on your own on how to master a programming language.

    My best advice is get a book to learn the basics of the C++ language. I suggest the Deitel 3rd edition. I'm currently using this. I don't know how far you are in C++. Transition from Java to C++ for me was easy. Most of the syntax are identical since Java was modeled after C++.
  5. androb Newcomer, in training

    Example

    #include <iostream.h>

    main() {
    cout << "techspot!!!";
    return 0;
    }
  6. erwin1978 Newcomer, in training

    Re: Example

    What does that mean?:(
  7. Didou Bowtie extraordinair!

    That's a pretty basic program, he's using the standard IO streams ( cout / cin ). Cout will generally be the screen & Cin the keyboard.

    It's simply printing techspot!!! on the screen.:)

    Java is very similar to C++ so I thought they also had the cin / cout system.
  8. erwin1978 Newcomer, in training

    I was just wondering what the relevancy of his post was to the topic.

    He forgot an int return type and state "using std::cout"
  9. dkperson Newcomer, in training

    i was wondering if im young enough to start learning c++ i already have the book
    and the program this book (http://www.amazon.com/gp/product/06...ref=sr_1_1/102-0947288-3876905?_encoding=UTF8)
    and the program but when i start reading the book which i have a couple of time get to like lesson 3 and dont really understand anything anyone know what i can do? i really want to learn this so any help would be apreciated.
  10. MrGaribaldi TechSpot Ambassador

    You don't give us much to work with.
    What is your problem with lesson 3? Are there certain elements you don't understand, or is it the entire concept? And how young/old are you?

    What you could do is go to your local library and see if they have any other C++ books. I started reading C++ for beginners and found that to be pretty decent (though I don't know how it progresses after chapter 8 or ten, as I then started doing C++ at the uni)....
Thread Status:
Not open for further replies.