Setting Up C++ Express
Setting Up C++ Express
1
At Project types, select Win 32
Click OK
2
Select Application Settings
3
At Application type: radio button, check Console Application
4
5
Right click at Resoure File
At the pull down menu, select ADD and then selecto Existing Item
6
Here is my source code
C:\Greg\VCExpress2008\DeitelExamples\Examples_HTProg_CExpressC2008\ch02
You can put your source code anywhere you like, of course.
7
Now observe that Resource Files C++ Welcome.cpp is added to this project.
8
Right click at C++ Welcome.cpp and you will see the source code.
9
To run Debug Start Without Debugging
10
The End
11
Tired off typing std::cout?
If so,use this: ….”using namespace std”
// Text-printing program.
#include <iostream> // allows program to output data to the screen
12