Reputation: 761
I want to write a console application in C in VS 2008. What project type do I need to select and what properties I must set in order to do this?
Upvotes: 3
Views: 4708
Reputation: 43311
C++ - Projects - Win32 Project - Console Application. When application is created, rename .cpp files to .c. In the Project Properties, C++, Advanced, select Compile As C code (/TC).
Upvotes: 6
Reputation: 44288
Win32 Console Project....
then add files....select .cpp, but call it a .c :)
Upvotes: 0