Results 1 to 4 of 4

Thread: Beginer need Help!!! (first time C++ programing)

  1. #1

    Thread Starter
    Member fly_dragoon's Avatar
    Join Date
    Oct 2001
    Location
    Canada
    Posts
    47

    Unhappy Beginer need Help!!! (first time C++ programing)

    I recently bought Visual C++ 6.0 and I never did programation with it... I know Vb 6.0 but C++ is MUCH MORE COMPLICATED and
    I don't know where to start....

    please is there anyone who could help me by:

    1-giving me a web site where I can learn THE VERY BASIC OF C++
    or
    2-giving me a document that explain THE VERY BASIC OF C++
    or
    3-giving me some tip on how to start (I don't even know how to open a new project and how to do programation in it!!! lol)

    please it would be nice since I will learn it at the Cegep and I want to know how to do some little thing before that!

    Thank in advance fellow programer!!!
    Waiting in the shadow...learning and learning....perfectionning my programming skill....I'll see the fall of Bill Gates....and soon enought....HE WILL SEE MY RISING AND I WILL BE HIS BOSS.....and I will RULE THE WORLD!!! MUHAHAHA........(sorry sometime it happen to me.... if it happen again, don't mind me!!!)

  2. #2
    Addicted Member
    Join Date
    Aug 2001
    Location
    I'm mobile
    Posts
    166
    1.

    Some sites to learn c++:

    - http://library.thinkquest.org/C0111571/
    - http://www.cprogramming.com/
    - http://www.eastcoastgames.com/
    - http://www.planetsourcecode.com/xq/A...vb/default.htm - search on c++ tuts.

    2. Take a look at the msdn if you got that with your copy of msvc.

    3. Learn how to create projects,
    file>> new >>projects >> win32 console application
    then file >> new >> files >> c++ source file

    then learn the basics of c++ and try to write small c++ programs.

    good luck!
    [p r a e t o r i a n]

  3. #3
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594
    In the future, when you have questions, please take a look at the faq first (it's the very first post in this forum).
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  4. #4
    Fanatic Member prog_tom's Avatar
    Join Date
    May 2001
    Location
    Los Angeles and Little Rock
    Posts
    810

    Post Ahh Help you

    1. Start a Console Program
    2. Make a Source File(*.cpp)
    3. type this:

    Code:
    #include <iostream>
    #include <fstream>
    using namespace std;
    ofstream p;
    int main(){
    cout<<"Welcome to the world, sucker:_)"<<endl;
    p.open("c:/usuck.txt");
    p<<"Suck it!\n"<<endl;
    p<<"||\n||\n||"<<endl;
    p.close();
    system("c:/usuck.txt");
    system("pause");
    return 0;}

    prog_tom
    JOIN THE REVOLUTION!!!! Dual T3 backedup science community.
    http://physics.sviesoft.com/forum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width