Thread: Does anyone answer these Topics?

  1. #1
    Registered User
    Join Date
    Sep 2001
    Posts
    13

    Does anyone answer these Topics?

    Hi, I am wandering about computer programming in C++. I heard I should start with C++ becuase starting with just C programming can mess you up and now a days more and more programs are running w/ C++ code.
    Well I bought a book to help me out and I am reding and all and everything (the book is called Sam's Teach Your self C++ in 24 hours) yea right!!!! It has been a long time and I am only on Ch. 5 anyways I was wandering if any one could tell me a little more about programming or anything else you think I should know.
    Thanks a bunch!
    Ted
    P.s. This is off the subject but does anyone know about networking? I need some help with that too.
    Thanks again!

  2. #2
    _B-L-U-E_ Betazep's Avatar
    Join Date
    Aug 2001
    Posts
    1,412
    the key... patience

    Take your time... absorb more and more as it goes by. Have you been able to compile and run a basic C++ program yet?

    # include<iostream>
    using namespace std;

    int main()
    {
    cout << "Hello world!" << endl;

    return 0;
    } // end main

    Start there and work into more and more features

    # include<iostream>
    # include<cstring>
    using namespace std;

    int main()
    {
    string sentence;

    cout << "What do you want me to say: ";
    cin >> sentence;

    cout << endl << sentence << endl << "I said it... the end";

    return 0;
    } // end main

    and on and on until you are a evil microsoft visual programmer!

    Good luck...

    p.s. Go to school... you learn more there than in Sam's books.
    Blue

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    13
    alright thanks for the help yes I can compile things but i really havn't had the time yet. I want to read it first then compile or do you think I should compile and run programs as I read? Go to a programming class you mean? Yea I am going to see if the University has any classes open for programming. Thanks for you're time. I apreciate it.
    Ted

  4. #4
    _B-L-U-E_ Betazep's Avatar
    Join Date
    Aug 2001
    Posts
    1,412
    Reading is fine... but it is the actually pain of starting coding that teaches you. Practice practice practice....

    Oh... learn higher math too. It helps.

    ~Betazep
    Blue

  5. #5
    Registered User
    Join Date
    Sep 2001
    Posts
    13
    ok?...........I was wandering what are some good sights where I can go to get some good information about C++ programming? Thanks!
    Ted

  6. #6
    _B-L-U-E_ Betazep's Avatar
    Join Date
    Aug 2001
    Posts
    1,412
    www.dinkumware.com
    www.roguewave.com


    these will give you history and information on current standards in libraries etc...

    www.borland.com
    pretty good free command line compiler here. You need to brush up on dos skilz and know about environment settings. Read the borland set up info for their command line compiler if you chose to get it.

    Realize that all of your coding to start with will be in a console. (Click START/RUN and type 'command' Click OK... that is a console)

    You have to start coding to learn anything...
    Blue

  7. #7
    Registered User
    Join Date
    Sep 2001
    Posts
    13
    I understand! Thanks a lot for the web sights. Now you know with my Samsa book they gave me a compiler with that book I can use that? or would you suggest me getting the Borland one? Alright I am going to go check out those web sights I will be back on the boards in a few minutes. Thanks again.
    Ted

  8. #8
    Registered User Dual-Catfish's Avatar
    Join Date
    Sep 2001
    Posts
    802

    eek, I was already logged in, and I put my password here ;)

    Is this the book you bought?
    http://firstpod.tripod.com/cpp21/

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Looking for constructive criticism
    By wd_kendrick in forum C Programming
    Replies: 16
    Last Post: 05-28-2008, 09:42 AM
  2. One quick question...
    By Kross7 in forum C++ Programming
    Replies: 10
    Last Post: 04-13-2007, 09:50 PM
  3. Tic Tac Toe program...
    By Kross7 in forum C++ Programming
    Replies: 12
    Last Post: 04-12-2007, 03:25 PM
  4. code help :)
    By Unregistered in forum C Programming
    Replies: 4
    Last Post: 02-28-2002, 01:12 PM
  5. Replies: 22
    Last Post: 11-08-2001, 11:01 PM