>>1429>What is the best way to learn c++?1.) Install a compiler
GCC (Every OS I've ever heard of) - de facto compiler for GNU+Linux
Clang (Windows, Mac OS, GNU+Linux, *BSD) - GCC's strongest competitor
MSVC (Windows) - the Official, True And Honest Compiler For Windows
2.) Install a text editor
Hardcore Unix users will tell you to install either vi(m) or emacs, though anything that can produce
plain text (even something as simple as M$ Notepad) will be fine at this stage.
You'll probably want a real text editor later on though; writing anything more than a thousand or so lines "manually" is a great
way to kill your fingers. Good editors, on the other hand, can write a lot of it for you, and syntax highlighting helps when checking
over your code.
3.) Start coding
Of course, you'll definitely want a tutorial as a guide (any of the top ten results on your favourite search engine should do),
but you're never going to learn C++ (or anything, really) unless you experiment with it.