There are many novice friends who say they don’t know how to use VS2013 software yet, but it doesn’t matter, because below the editor has shared the tutorial content about using VS2013. I hope friends in need can come and learn together.
Open VS2013, click File-----New-----Project in the upper right corner, or click New Project directly
Find Visual C++ in the pop-up new project and select Win32 console application. Select a location below, along with a name. Then click OK
Click Next in the pop-up dialog box, and then select an empty project in the additional options (if you want to use normal C functions, you can uncheck the Security Development Lifecycle (SDL) check) and then click Finish.
After creating the project, click on the project on the VS interface------Add new item, and then change the name in the add new item box from source.cpp to source.c (if you want to write C++, you don’t need to change it) . Finally click Add, and then you can write code. (Press F5 to compile and run)
The above explains the operation content of using VS2013. I hope friends in need can learn it.