How to write a C language program with Visual Studio (vs2013)(2014-05-16 10:58:15)
Visual Studio 2013 is a powerful software, but when you start writing a C program with Visual Studio 2013, you don't know how to use it to write a C language program. I also encountered a lot of difficulties in beginners, asked a lot of talent to solve. Here's how to write a C language program in Visual Studio 2013. --Reprinted with a blog from http://blog.sina.com.cn/u/2521753203 Wang Chenglin.
1. Install Visual Studio 2013 (activate) and open Visual Studio 2013, which you don't have to say.
2. "File"--"new"--"project" to open the ' New Project ' window.
3. "Template" select "Visual C + +", "Win32 Console Application", "name", "Location", "Solution name" Fill it according to your own needs, will not fill the words by default.
4. Click "OK" to pop up the following window.
Click Next and the following window appears,
Tick the box in front of "Empty Project" and click "Finish".
5. "Source file"--Right click "Add"--"New Item"
Here "name" to name your own file, select "C + + file (. cpp)"--"add", then you can edit your program.
6. After the program is written, press "F5" to Debug, "Ctrl+f5" run
How to write a C language program with Visual Studio (vs2013)