Quote Originally Posted by RipRage View Post
Hi Experts,

Just a quick one, can anyone recommend any decent books / sites that can teach you C++ from someone who has a fairly good knowledge of C and the WinAPI.

Main things i am interested in mastering are the object oriented features and concepts.

Thanks in advance.
Accelerated C++ by Koenig & Moo. That book is geared to programmers who know another language that want to learn C++.

Also, realize that C++ is a different language than C, and you may/will need to unlearn a lot of things you did in 'C'. This means that a lot of things you did when programming in 'C' are not necessary, and in some cases, invalid in a C++ program.

Regards,

Paul McKenzie