Similar Posts

Subscribe
Notify of
2 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
regex9
5 months ago

I can’t recommend skipping the basics for C++. Even if you are C-long language (such as D or Objective-C) is already very familiar, but there are differences in syntax or approach.

Certainly there are a few concepts or structures (e.g. loops, branchings) into which you can work quickly if you already know them from another programming language. However, there are as many different basic topics that you might still be completely unknown (e.g. other operators, typecast operations, pointers and references, const expressions, handling strings and arrays, the functional process during compilation).

A recommended online source for learning would be LearnCpp. Also Hyperskill is a good starting point. On YouTube I would like to playlist Mike Shah (The C++ Programming Language) refer.

A recommended YouTube channel for later is @CppCon. On it you will find lectures on specific topics (e.g. templates, lambdas, move operations, …), which are sometimes deepened (even compared to usual tutorials).

NackterGerd
5 months ago

YouTube is the worst

OBSERVATION