Project C in Visual Studio 2013

4

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?

    
asked by anonymous 29.09.2014 / 02:07

2 answers

3

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)

    
29.09.2014 / 13:46
1

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.

    
29.09.2014 / 02:11