Many novice partners do not know how to write C language when using VS2013. Today, the editor will share the steps for writing C language in VS2013. If you need it, please learn it with me.
1. Open VS013, we find that there are options to create a new project and open a project. Here we choose to create a new project.
2. There will be an interface for creating a new project. There are writing environments in various languages on the left, such as VB, VC#, VC++. Choose VC++ because C++ is basically compatible with C language. Select the type, write the project name and click OK. .
3. Click Next
4. Check the empty project. If you don’t select it, the program will add some code for you by default. Sometimes it will cause compilation errors if it is not used.
5. At this time, a new project has been created. Right-click the source file to add a new item.
6. Add the new item and name it, change .cpp to .c, explain to the program that this is a C language code, and then you can start writing C language programs.
? Friends in need should hurry up and read this article.