March 7, 2015

On Saturday, March 07, 2015 by Unknown in , , ,    No comments

If you are new in Visual Studio 2013 and you don't know how to run C/C++ Project on Visual Studio 2013 than this is for you.

Just follow a few steps. :)

Step: 1
Open Visual Studio 2013.
Click: File >> New >> Project

  




Step: 2
* Select Template as Visual C++
* Select Win32 Console Application
* Give a
Name to your C/C++ Project
* Then Click
OK




Step: 3
   If you see this screen, than click Finish.


Step: 4
 This is default code or form of C++ Project in Visual Studio 2013 .




Step: 5
You will see default code like -

#include "stdafx.h"

int _tmain(int argc, _TCHAR* argv[])
{
     return 0;
}

Just keep  #include "stdafx.h" and Delete others
Then write your C or C++ code like you learn before .


 
C Programming
***************
C++ Programming
*****************

Step: 6
Now, Build your code.




 Step: 7
    You can find the build result or Error list here.


Step: 8
    Now Run your code:
   * Click DEBUG 
   * Click
Start Without Debugging


Step: 9
You have just finished your Project :) :)


** * * **
>>> Thank You <<<

** * * **


0 comments:

Post a Comment