Download presentation
Presentation is loading. Please wait.
Published byHarriet Fisher Modified over 9 years ago
1
CS2311 - Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which is quite similar to 2010)
2
Outline Introduction and installation of Visual studio (VS) Writing, compiling, and executing C++ programs using VS
3
Working Environment In this course, you will be working with PC under Windows 7 or 8, and all the programs will be written with Visual Studio 2012. In this tutorial, you will explore and get familiar with the MS Visual Studio 2012 compiler working environment. Visual Studio 2012 is an integrated developing environment (IDE). Inside the Visual Studio 2012 compiler, you can edit, compile, link, run, debug and manage your programming projects.
4
Setting up Visual Studio Environment (In CSC Labs) Locate Microsoft Visual Studio 2012 from the WorkDesk icon on Desktop. Visual Studio 2012 professional and Visual Studio 2012 professional ultimate are similar IDE and both of them can be used in this course
5
Outline Introduction and installation of Visual studio (VS) Writing, compiling, and executing C programs using VS
6
Steps for writing, compiling and running c programs 1.Create a project and project folder 2.Create a folder for storing programs (source code) 3.Add the source code to project 4.Compile and run the program
7
Create the project 1.Select File 2.Mouse over New 3.Click Project…
8
Create a C++ Console Project 2: Select Win32 Console Application 1: Select Visual C++ 4: type a folder name, e.g. tut1 4: uncheck “Create directory for solution” 6: click OK 3: Select the folder where you want the project saved e.g. c:\user\ \documents\Visual Studio 2010\Projects
9
Customize the project setting click Application Setting
10
Customize the project setting 1: check Empty project 2: click Finish
11
Add a C++ program file into the project 1. Right click Source Files 2. Mouse over Add 3. Click New Item…
12
Add a C++ program file into the project 1: select C++ File(.cpp) 3: click Add 2: enter a file name, e.g. tut1
13
Writing code The cpp file just created The area for typing project code
14
Writing code Type the Hello World program
15
Build (Compile) your program [F7] click Build Solution
16
Build your program If the program can be built successfully, you will see 1 succeeded here
17
Execute your program [Ctrl+F5] click Start without Debugging…
18
Result of Execution
19
Try it out! Comment this line
20
Rebuild the project [Ctrl+Alt+F7] This time, click Rebuild Solution because the project has been built before
21
Got an error message 0 succeeded, 1 failed means the program has problem! No executable is made
22
If you try to execute it anyway..
23
You will get an error message
24
And will not have an expected result
25
A better way: Locate the error Double click the error message A maker will be placed beside the line that makes program failed to build
26
Fixed the error Add std:: before cout, it tells the compiler the cout object is defined in std namespace
27
Rebuild the project: Fixed! It is success this time!
28
Copy your project out Locate your project (the path may be different if you choice different path in project creation Copy the whole folder into your USB or elsewhere
29
Reload your project Close it first!
30
VS without project loaded Click File >> Open
31
Locate and select your project 1. Select tut1.sln from the project folder you copy before Click Open
32
Your project is loaded
33
Work on other program with the same project Within the same project, we can only have one “main” function. If you want to add another program file with function main, exclude the existing one first!
34
Schedule Introduction and installation of Visual studio (VS) Writing, compiling, and executing C programs using VS
35
What you have done in this Tutorial Create a Visual Studio 2012 Project Create and add a C program into the project Write a simple Hello World Program Build and Execute the program Locate the syntax error of a program
36
Downloading a Visual C++ 2012 compilers (try it yourself at home) Visual Studio 2012 can be found at: http://msdnaa.cs.cityu.edu.hk/ http://msdnaa.cs.cityu.edu.hk/ Login using your student ID as login name and password. Click "MSDNAA Software Center" Select Visual Studio 2012 Professional Edition Add the following items to the shopping cart Visual Studio 2010 Professional Edition DVD Download and run the executable files. Burn the iso files to DVDs (or using software to mount the DVD image). Click setup to install.
37
You have to ….Trust us Click this
38
Enter your CS lab account (Check the email sent by CS Lab first)
39
Enter the MSDNAA Software Center Click this
40
Select Visual Studio 2012 1. Select Developer Tools
41
Download the Ultimate Version Select Visual Studio 2012 Ultimate
42
Add VS2012 to shopping cart Click Add to Cart and then check- out
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.