I want to write program using C in Visual studio 2008. But I have no idea how to start, what should I select so that i can create C program
File->New project->”other language C++”.
Or
File->New->new file ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Based on your wording, I think you’re probably looking to develop native CLI (Command Line Interface) applications, in which case you want “Win32 Console Application”
Note that any project type with CLR in the name is not true C/C++, it’s the .NET managed implementation of C++. Likewise, anything with ATL or MFC in the name is a case of “if you don’t know what it is, you don’t need it.”
Hopefully that will help narrow it down for you, but you probably want the one I suggested anyway.