up vote 13 down vote favorite
6
share [g+] share [fb]

Are there any quality resources online for me to learn C++?

Edit: I wanted to make a note that the extent of my C(++) knowledge now is
cout << 'minimal';

link|improve this question
9  
Obviously it is, since you cannot use ' to delimit a string in C++ ;) – Matthieu M. Jan 16 '10 at 16:37
feedback

8 Answers

up vote 7 down vote accepted

Bruce Eckel's Thinking in C++ is a good book.

alt text

link|improve this answer
feedback

I come to this site pretty often for reference. I haven't gone through this tutorial in detail, but it doesn't require any previous experience in c++.
Good luck.

link|improve this answer
feedback

The Object-Oriented Programming in C++ course from the University of Southern Queensland looks great. It's fully open.

link|improve this answer
feedback

The C++ FAQ LITE is handy for most questions you might have on the language.

link|improve this answer
feedback

It's a free to download book. You can grab it from here.

link|improve this answer
The link goes to 'thinking in c++' – Chris Huang-Leaver Apr 14 '11 at 8:27
feedback

Specifically for the STL (Standard Template Library, which is C++'s generic toolbox for many data structures and algorithms):

http://www.sgi.com/tech/stl/

It's a bit dense, but for some reason most C++ documentation seems to be dense.

link|improve this answer
That one is on my bookmarks bar all the time. Not sure its the place to start for a beginner, but you will need it – Chris Huang-Leaver Apr 14 '11 at 8:31
feedback

I would recommend Bruce Eckel's book too (used the first volume when I was learning C++\OO programming). Also I've occasionally found Stroustup's FAQ to be informative particularly from a new to C++ but not to programming perspective.

link|improve this answer
feedback
http://www.comeaucomputing.com/tryitout/

Not to learn, but to try with real and one of the best C++ compilers. If you use C++, this is precious url, keep it safe.

--DBJ

PS: there are tons of C++ books in pdf format. But. You do need to understand what the master is saying to you when reading his book.

http://en.wikipedia.org/wiki/Stroustrup
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.