Write first C++ Program using Microsoft Visual Studio

This article will guide you to write first C++ program using Visual Studio 2008 and explain you step by step on how to create your first C++ program. Follow the following simple steps and you should be able to create your first c++ program without any issues: Open the Microsoft Visual Studio 2008 application. Click on File > New > Project as shown below: On performing the above steps, following window will be displayed. Under “Project types:” select Visual C++ > Win32. At the right hand side, under Templates Select Win32 Console Application. Enter the Project Name in the Name field, Location and the the Name of the Solution as desired and click on OK button. On performing the above step, following window will be displayed: Click on Next Button. Select Console application as Application type and under Additional options, select Empty project and click Finish. On clicking Finish button,...