I've gotten the hang of variables, control structures, functions, and object-oriented programming in C++. What should I focus on next to keep progressing in my learning?
2 Answers
Don't forget about data structures! They're a fundamental part of programming that will really help you in C++. Understanding how to effectively use them can greatly enhance your coding skills.
I suggest starting by building small projects with what you already know, like command line tools or simple games. This hands-on practice will help you solidify your skills. After that, dive into more advanced topics such as pointers, memory allocation, classes, inheritance, and STL containers. Don't forget to keep working on projects—it's crucial, especially with how the job market is right now!
Absolutely! Building projects is key. Once you have a small project in mind, learn whatever you need for it. Break down the larger goal into bite-sized tasks.

Yeah, it's super important! But just to clarify, data structures and SQL are different. Data structures are more about how data is organized in code, while SQL is for managing data in databases.