4
I’m learning C in college and will have to program in C.
I tested with Visual Studio 2013 and 2019 Community Edition I can create projects in C++, but I couldn’t find anything like a "Visual C".
Is there any form or extension that allows the creation of projects in pure C?
I’ve never tried to compile C in VS 2013, but I imagine it’s the same as previous versions. Have you ever tried other versions? I’ll see if I can write a reply but I’ll tell you that unless there’s something I don’t know, you need to create a C++ project yourself and compile the files
.c
and.h
to indicate that it is C and not C++.– Maniero