Thread: C++ total beginnner needs some advice

  1. #1
    Registered User
    Join Date
    Dec 2006
    Posts
    2

    C++ total beginnner needs some advice

    hi! im a 3d artist. but one of my "ultimate" goals is to learn programming. i will learn it eventually in school but that will be in a year or two(i will learn Java).

    so as i said i dont have a clue about c++(ive done some c# but very little(some functions like +, - and text writing to console.))

    so for those that are experienced..what compiler do you prefer(state some free ones).

    ive been at the part of this site with tutorials. i will start form the beggining(duh.) when i will know the basics i want to go into phisicall programming(i dont know if i write it correctly). what i mean is: creating a simple window and a ball that bounces in it(from walls; nothing 3d yet).

    so does any1 know any special tutorials phissical programming for beginners?
    thx for any kind of help or advices in advance!

  2. #2
    Registered User
    Join Date
    Jan 2006
    Location
    North Yorkshire, England
    Posts
    147
    well most use bloodshed's dev-c++ which is free and very good.

    as for the physics programming id suggest you be very patient as that will take quite a while before your up to that standard lol. im by no way experienced, but i have seen the type of code it requries and it is way beyond me at the moment.

  3. #3
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688
    Once you have obtained an IDE and compiler, I suggest you attempt a simple tutorial.
    Start with somthing like this as a console application

    Code:
    #include <iostream>
    
    using std::cout;
    using std::cin;
    
    int main ( void )
    {
       cout << "Hello World!\n";
    
       cin.get();
    
       return 0;
    }
    Double Helix STL

  4. #4
    Registered User
    Join Date
    Jan 2006
    Location
    North Yorkshire, England
    Posts
    147
    Quote Originally Posted by swgh
    Once you have obtained an IDE and compiler, I suggest you attempt a simple tutorial.
    Start with somthing like this as a console application

    Code:
    #include <iostream>
    
    using std::cout;
    using std::cin;
    
    int main ( void )
    {
       cout << "Hello World!\n";
    
       cin.get();
    
       return 0;
    }
    even that looks a little complex imo lol.

    sommit like;

    Code:
    char name[10];
    
    cout << "Please enter your name :" ;
    
    cin.getline(name, 10, '\n');
    
    cout << "your name is " << name << endl;
    would be easier, and has room for improvement.

  5. #5
    MFC killed my cat! manutd's Avatar
    Join Date
    Sep 2006
    Location
    Boston, Massachusetts
    Posts
    870
    Also look at Code::Blocks.
    Silence is better than unmeaning words.
    - Pythagoras
    My blog

  6. #6
    Registered User
    Join Date
    Dec 2006
    Posts
    2
    thx for all the help! ill get started right away!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Help with day of the week program
    By Punkakitty in forum C++ Programming
    Replies: 10
    Last Post: 01-14-2009, 06:55 PM
  2. Replies: 8
    Last Post: 11-03-2008, 09:48 PM
  3. long problem
    By loko in forum C Programming
    Replies: 28
    Last Post: 07-22-2005, 09:38 AM
  4. The Timing is incorret
    By Drew in forum C++ Programming
    Replies: 5
    Last Post: 08-28-2003, 04:57 PM
  5. Replies: 4
    Last Post: 04-22-2003, 12:52 PM