I'm learning C in college and I'll have to program in C.
In Visual Studio 2013 I can create projects in C ++, but I did not find anything like a "Visual C".
Is there any way or extension that allows the creation of pure C projects?
I'm learning C in college and I'll have to program in C.
In Visual Studio 2013 I can create projects in C ++, but I did not find anything like a "Visual C".
Is there any way or extension that allows the creation of pure C projects?
Just create an empty Win32 project and add a font with extension "C". You can also force the compiler to only accept ANSI code, as shown below:
Configuration Properties-> Advanced-> Compile As: Compile C Code (/ TC)
Yes, but you will have to use a C ++ project to be able to write in C:
This site gives some more details on how to use one pure C structure.