Not C++, not C#, just plain old C for my computer science class.
I see options for C#, F#, Visual Basic, and Visual C++, but if there’s an easy way to get it to work with C, I’m not seeing it.
*”set up as an IDE” in this case, meaning use Visual Studio to compile, debug, and run the written programs via VS2010, just as I’ve been using it previously for programming in c#.
Create an empty C++ project.
Bring up the project’s properties by right clicking on it in the solution explorer and selecting “Properties”.
Browse to Configuration Properties -> C/C++ -> Advanced.
Switch the Compile As property to “Compile as C Code (/TC)”. This will compile all source files as C.
See also the /TC compiler option: http://msdn.microsoft.com/en-us/library/032xwy55%28v=VS.71%29.aspx.