CIS 170C iLab 1 of 7 Getting Started (100 % Correct) CIS 170C iLab 1 of 7 Getting Started (100 % Correc | Page 2
Lab:
Part A: Getting Started
Step 1: Start the Application
1. From the File menu, choose "New Project."
2. Choose “Win32 Console Application.”
3. Enter a name in the name field.
4. Click “OK”
5. Click “Next” and choose the following options:
6. Application Type: "Console Application"
7. Additional options: Check mark “Empty project”.
8. Click Finish. Your project is now created.
Step 2: How to Add a Source Code File to Your Project (.cpp file)
1.
In the Solution Explorer, right-click on the “Source Files” folder and select "Add" and
then "New Item."
2.
In the next dialog box, choose C++ file (.cpp), enter a name for your source code file, and
press the Add button.
3.
Type or copy and paste your code into the newly created source code file. Build the file
by pressing F7, and then execute your program by pressing CTRL-F5 (start without debugging)
or use the F5 key (Start Debugging).