Get to coding faster
With faster project load
times and performance improvements, you can get to working faster with your
favourite languages such as C/C++, C#, Visual Basic, F#, Python, and more.
If you wish to use visual studio express it is available at…
https:// www.visualstudio.com/vs/express/
Compilation and execution using visual studio express.
Carry out the following steps to compile and execute programs using visual studio express:
1. Start visual studio express from start | all program | Microsoft visual studio C++ express.
2. Select file | new project from the file menu. Select project type as visual C++| Win32 console application from the dialogue that pops up. type a suitable project name in the name text box. Click ok and finish.
3. Type the program.
4. Save the program using Ctrl + S.
5. Use Ctrl + F5 to compile and execute the program.
Note: in visual studio express use different header file as shown in the following program structure…
#include ”stdafx.h”
Int_tmain()
{
return 0;
}
Comments
Post a Comment