|
|
|
|
|
by yosyp
2883 days ago
|
|
Yes! And be careful and very picky about what you read! To quote a popular Quora answer [1]: "If you really want to learn C++, I advise against any and all online tutorials and against most books. Without any kind of quality control, many professional book writers published many awful C++ textbooks that may be easy to read and sell well, but teach lies. Stick with the community-verified book list available at StackOverflow" In other words, use the StackOverflow list to choose the right teaching material [2]. A Tour of C++ (Bjarne Stroustrup) has been a good refresher, with C++ Primer (Stanley Lippman, Josée Lajoie, and Barbara E. Moo) as the primary reference for further clarification. Also use GeeksForGeeks and LeetCode practice problems. [1] https://www.quora.com/Which-is-the-best-book-for-learning-c+...
[2] https://stackoverflow.com/questions/388242/the-definitive-c-... |
|