c++ tutorial

LiquifiedGold's picture

 

(Wellcome to tutorial 2!)

Now that we have all the code writen out, we need to translate it into a language the computer can understand. There are two steps to this.

The first step is called compiling. In this step the computer compiles each sorce code file, or each .CPP file, in your project (more coplex projects have more than one sorce file) and generates an object file (.OBJ) for each one. The object file contains the object code or the machine language.

LiquifiedGold's picture

 I am taking a C++ progaming class for school and I'd thought I share it. I use 
Microsoft Visual C++ 2008.

If you want to download the Microsoft Visual C++ you can download it here: http://www.microsoft.com/express/vc/

Here is the first morsel of code:

After you launch Visual C++, go to the menu and select File->New->Project. 

The folowing dialog box appears: