This tutorial is part of a Collection: C++ Tutorial
rate up
3
rate down
896
views
bookmark
02. Setting up Visual Studio project

In this tutorial we will set up a project in Visual Studio 2015

There are no files for this tutorial
First start Visual Studio 2015. Then go to File -> New -> Project A new window will pop up, on the left side under Templates select Visual C++, and under that select Win32. On the middle of the windows you will see two types of projects. Win32 Console Application and Win32 Project. Select Console Application and give a name to your project. +[http://www.braynzarsoft.net/image/100256][Creating a project] When you have doen all the things above click OK. Then a new window will pop up. Click Next, then another window will pop up. In the second window you need to check Console application and Empty project, then click Finish. +[http://www.braynzarsoft.net/image/100257][Creating a project] Now all that we have to do is create a new source file. In the Solution explorer select Source File -> Add -> New item. +[http://www.braynzarsoft.net/image/100258][Creating a source file] A new window will pop up, there you will need to select C++ file. In the bottom of the window you can name your file whatever you want or just stick with main.cpp. +[http://www.braynzarsoft.net/image/100259][Creating a source file] Now you have an empty project ready to go. We will begin adding some code to our project in the next tutorial.