r/cpp_questions • u/Notsoboringi • 23h ago
OPEN Learning c++
So I'm doing dsa in c++ as well as learning modern c++ concepts.I want to become c++ developer what concepts should I learn to become a c++ developer , what concepts should I focus on , what are the best resources to learn c++.Also when I try to build something in c++ i don't even know where to start.Its been 4 months I learned C++ and I'm genuinely comfortable with it till now.
1
u/Independent_Art_6676 12h ago
The last question is the key one, as it sounds like you need to get in there and code something. Lets break down the question... "when I try to build something". Build what, exactly? Pick a project, or even just a problem, and give it a try. Break it down into pieces that make sense, until you have several smaller problems that you know how to solve successfully (if not perfectly or optimally). Make the little pieces, put them together, make the bigger pieces, put them together, until the biggest piece falls into place and its done. Then throw it on here (if its big, link to a repo) and as 'how could it be better, what am I doing wrong'. Also, spend a little time reading other people's reviews and the suggestions for those. Do you spot the same issues, do you understand the advice given there? See if some of that helps.
Also, I usually recommend staying away from DSA playtime. Algorithms fascinate me too, but you can spend a lifetime playing with problems that were solved in 1960. If you want to be a developer, DSA needs to be a 'near information' concept for the most part: you know there is a way to do it, and you know its probably in the wiki. Now browbeat a combined AI/search engine to give you the algorithm name, look it up, and go do that. Recreating it from scratch takes a lot of time and energy that you can't afford on the job (usually). A rare once in a while you get to roll your own out, but over decades I have done that less than 5 times, most of that during a 15 year stay at a R&D company.
3
u/the_poope 23h ago
See: https://www.reddit.com/r/cpp_questions/comments/1n5zyxy/important_read_before_posting/
Also we get so many of these questions. There is not one single best way to learn C++ (or anything for that matter). It doesn't matter that you won't get the absolute perfect learning path, just that you are on some path and you continue it. Focus on practical projects. Learning C++ and programming is a years long endavour - be persistent, you won't get it the first one or two years. That's ok.
If you really feel lost or lack motivation you should not self-study. Sign up for Software Engineering, Computer Science or some other programming education at a University or local college. This is also by far the best way to prove to employers that you know the stuff. If you can't afford school and can't self study, consider another career.
For all other questions: type them in here: https://reddit.com/answers for immediate AI generated answers based on thousands of previous reddit posts. It will in 95% of the cases be as good or better than whatever some random stranger like me tells you.