It seems Duoas skipped a step entirely.
I'll recommend this book, since it's the one I learnt C++ from:
Teach Yourself C++ in 21 Days http://newdata.box.sk/bx/c/index.htm
Some parts are out-of-date, which is understandable, considering it's at least ten years old, but it's not bad for learning the basics. Don't be fooled. Any language that can actually be learnt in 21 days is probably not worth learning. Even if you do finish the book in 21 days, there's a lot you have to learn by yourself.
Other books I've heard are, or know to be, good:
The C++ Language by Bjarne Stroustrup (the designer of C++), and
The C++ Primer.
Personally, I found Stroustrup's book more useful as a syntax reference than a tutorial.
Other material very useful to learn C++ other than books: a good language reference (the one on this site is more than adequate), a good C++ compiler*. The Standard is handy once in a while to check whether something you're doing will have the same effect everywhere. Too bad it's written more like a legal document than something a programmer could easily understand.
I definitely agree with guestgulkan. This is something comparable to going up to some random person on the street and telling them how much you make. Giving information of this nature when people didn't ask is usually considered showing off, and therefore rude.
*Read: not Borland. By now, most C++ compilers don't suck. Borland is the exception.