[Solved] Creating a .cpp in Visual Studio 2010

tejaswi

Honorable
Sep 26, 2012
1
0
10,510
i wrote a program on time in cpp for window service can i execute that program in visual studio2010
 
Create a new project: press Ctrl + Shift + N, Select Win32 and then console application. Enter a name for your program and press "OK" button. Then, press "Next". On the next screen, check "Empty project" check box and press finish. Lastly, right click "source" folder in solution explorer, press add existing file, and add your cpp file.

Now, if you want to execute it, press F5.