Microsoft Visual Studio 2010 Instructions For C
Microsoft Visual Studio 2010 Instructions For C
For C Programs
Creating a NEW C Project
1. Select File > New > Project from the main menu. This will open the New Project dialog box.
2. Select the Visual C++ option from the Installed Templates panel on the left hand side of the New Project dialog
box.
3. Select the Empty Project option from the middle panel of the New Project dialog box.
5. Change the Location of where you would like to save your NEW project. Note that your Home Directory on the
Business/CS Lab computers resides on drive Z: and your USB usually resides on drive E:.
At this point in time your NEW project should open up in Visual Studio and you should be
able to see your project assets in the Solution Explorer on the left hand side of your Visual
Studio window.
8. Right click on the Source Files folder in the Solution Explorer and select Add > New Item.
The Add New Item dialog box should appear at this time.
9. Select the C File (.cpp) option from the middle panel of the Add New Item dialog box.
At this point in time your NEW C Source File should appear as a project asset under the Source Files folder in the
Solution Explorer on the right hand side of your Visual Studio window. Your NEW C Source File should open
under a NEW Tab on the left hand side of the Visual Studio window as shown below. You can now type your
program into the Visual Studio 2010 editor.
1. Select the Tab that contains the Source Code you wish to save.
2. Select File > Save filename.c from the main menu. This will automatically save the source code in that is open in
the active tab of your Visual Studio 2010 workspace.
At the bottom of your screen you should see the results of the compilation process which look similar the results
in the picture below which indicate that your program has been built successfully:
A new window should open and this should contain the results of your programs execution. Proceed to the
following page if you do not see this window on your computer.
If an execution window does not appear or does not stay open, make the following changes in Visual Studio:
d. Under the Configuration Properties, expand the Linker option in the left panel of the Property Pages Dialog
box by clicking on the to the left of the Linker option.
e. Under the Linker option, select the System option in the left panel of the Property Pages Dialog box.
f. In the right panel of the Property Pages Dialog box, change the SubSystem option by clicking on the
on the far right and select Console (/SUBSYSTEM: CONSOLE) as is shown below:
g. Select Apply and OK at the bottom of the Property Pages Dialog box for the changes to take place the next
time you run your program.
2. Press the Yes button to confirm saving changes to your Project. Upon confirmation, all of your open files should
be closed and your Solution Explorer should be void of information. At this point you can either close Visual
Studio OR open a NEW or existing C Project.
3. At this point your Project should be open in your Visual Studio Workspace.