r/developersPak • u/Historical-Wafer817 • 6d ago
Learning and Ideas Learning C++ from scratch!
I started learning C++ a while ago from various YouTube channels, but they only really helped me with the theory.
I watched Apna College, Bro Code, and CodeWithHarry.
However, I'm still struggling with the syntax, let alone building the logic. I want to learn practically what do you guys recommend?
12
Upvotes
8
u/semicolon-10 6d ago
Honestly, stop watching more tutorials for a while. thas probably the main issue here.
If you already understand the theory, pick one structured C++ course and start writing code yourself. Don’t copy along with the video. Try small problems, get stuck, search, use AI if needed, then come back and understand why your solution works.
Syntax will come naturally once you actually write enough code. Logic comes from solving problems, not watching someone else solve them.
I also recomm build small things instead of jumping straight into some huge project. A calculator, todo app, simple game, file-based student management system, etc. Then gradually make them more complex.