+ 1
How can I get a good source for learning c++ because solo learn is not enough or that's what I think
5 Answers
+ 1
do you mean not good enough as in it doesnt suit your learning style or because you dont think it explains things very well? There is the official cpp documentation and a lot of people recommend 'the new boston' youtube tutorials.
+ 2
Try having a look at edx.org also there are plenty of pdf's available on the net.
+ 2
Programming: Principles and Practice Using C++ by Bjarne Stroustrup
This is the sort of book you would use in a freshman introduction-to-programming class. So if you are just beginning to study programming and are interested in C++ then I think it is probably safe to say this is one of the best books you could read.
Effective C++: 55 Specific Ways to Improve Your Programs and Designs (3rd Edition) by Scott Meyers
This is a great intermediate level C++ book. This book explains many things you need to know about the language to avoid doing so on a regular basis. So if you are writing C++ software then this is a must-read. I would even claim that you are a danger to the C++ software you touch unless you know what is in this book. I'm not kidding. Finally, the book isn't just about the quirks of C++. It also discusses many general software engineering ideas which have wide applicability. So in this respect it is a
book for any software developer to read.
/*** not my words but these books will really help you ***/
0
Thanks for your attention