230 likes | 385 Views
VISUAL STUDIO 2013 Installation ON Windows platform. Outline. System requirements Install Visual Studio Open Visual Studio Create new project. System Requirements. 1.6 GHz or faster processor 1 GB of RAM (1.5 GB if running on a virtual machine ) 20 GB of available hard disk space
E N D
Outline • System requirements • Install Visual Studio • Open Visual Studio • Create new project
System Requirements • 1.6 GHz or faster processor • 1 GB of RAM (1.5 GB if running on a virtual machine) • 20 GB of available hard disk space • DirectX 9-capable video card that runs at 1024 x 768 or higher display resolution • Internet Explorer 10
Install VISUAL STUDIO • The Visual Studio Professional 2013 program is very large and should only be downloaded using a high-speed Internet connection • Download ISO image file http://www.cc.ncku.edu.tw/download/visualtool.htm • The website is only accessible by using NCKU internet
Install VISUAL STUDIO Download ISO image file
Install VISUAL STUDIO Locate the downloaded file: Visual_Studio_Pro_2013_Cht.iso Right click to mount ISO image file using DAEMON Tools (http://www.disk-tools.com/download/daemon) or internal virtual drives emulator in Windows 8
Install VISUAL STUDIO Double-click the installer file to begin installation
Install VISUAL STUDIO Agree on terms and conditions and click on “Next” button Additional feature is not necessary for C++ Click “Install” button
Install VISUAL STUDIO Setup will create “System Restore Point” before starting the installation process Once it is done, it will start installation process around 20-30 minutes
Install VISUAL STUDIO Once setup is completed, you can launch Visual studio
Install VISUAL STUDIO Login with your Microsoft account (i.e., Hotmail, Outlook) Select Visual C++ environment and launch Visual Studio
OPEN VISUAL STUDIO Locate VISUAL STUDIO after installation
Create new project Win32 Console Application Template Filename
Create new project Uncheck precompiled header
Create new project SOURCE CODE #include <iostream> int main() { char YourName[200]; std::cout << "Type your name:"; std::cin >>YourName; std::cout << "Hello "<<YourName<<", Welcome to NCKU! "; system( "PAUSE "); return 0; }
Create new project Build solution
Create new project Start debugging
Create new project Result