If I'm looking to learn about a new C++ library for my projects, what's the best approach to get started? Should I try to memorize everything about it?
2 Answers
You definitely shouldn't feel pressured to memorize everything—that’s what documentation is for! The best way to get a grasp on a library is to dive in, start working on a project that uses it, and learn through hands-on experience.
Reading the documentation is key. Instead of trying to learn everything about a library, focus on understanding how to apply it to your projects. That’s where the real learning happens!

Do experienced developers still copy code when using libraries?