lorebringer
Member
Of these, which is the highest version?
As far as I know, VS Ultimate has everything but I could be completely and totally wrong, I don't use VS all that often myself. One thing you might want to consider, if you're new to programming in general and c++ in particular is to have a go at writing some small programs with just a text editor and a command line to compile. You'll get a better feel for how code hangs together and it will make more sense straight off the bat. Visual Studio is a great IDE but I think it obscures too much of the under the hood stuff and can result in people getting through years of programming in college and then falling apart the second a project they're working on breaks or needs to be built with a makefile.
Visual Studio uses it's own compiler and so it can function as a standalone thing but most editors are just editors that use an external compiler. If you're running windows you could have a go at installing
MinGW:
http://www.mingw.org/wiki/Getting_Started
And then a decent text editor like Notepad++:
http://notepad-plus-plus.org/
And then just follow a really simple tutorial, I'm not sure where to go for good ones online, your best bet is probably a good book, but this one covers setting up compiling and writing a first program without the use of a complex IDE:
http://grandfiles.com/tutorials/mingw/index.html
After you're happy that you get the basics of doing that knock yourself out with VS but I think it can be a bit too much of an abstraction to begin with.