tags:

views:

400

answers:

6

What are (good) online resources to learn C++? Preferably resources focused on programmers with experience in other (object-oriented) languages?

Possible duplicates:

+1  A: 

Have you used the search feature? I quickly found this thread. Depending on what language you're coming from (you haven't specified), threads like this may also be relevant.

No matter your skill level, I always find learncpp.com/ to be a great resource to brush up on your skills. It is also more thorough than most of the other front-page results on google for "C++ Tutorial" and such.

John T
+1  A: 

http://www.cplusplus.com/ could be a good start.

Scarlet
+1  A: 

Free online books, google around:

Thinking in C++, 2nd ed. Volume 1
Thinking in C++, Volume2

by Bruce Eckel

I have a local copy and I've used them quite a lot for references, first Volume explain basics (most of the stuff you need to know to write c++ application). Second part goes into templates, exceptions, io and nifty stuff like that.

stefanB
http://www.mindview.net/Books/DownloadSites
Peter Smit
+3  A: 

I've found C++ FAQ Lite to be wonderful. You should read it through. Actually, you should start with this, a newbie section.

nhaa123
+2  A: 

I think the best resource for a start are Four available WikiBooks:

  1. C++ Programming
  2. More C++ Idioms
  3. Optimizing C++
  4. Understanding C++
  5. C++ Programming As A Set Of Problems
+1  A: 

Good community that helps is:
http://www.cpplc.net/forum/

Martin York