Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@Artemix
Well I dont think you can teach C++ without mixing it with C because C++ has C as its skeleton. And why would you not learn about pointers, if they are used all over the STL. You should know what you are doing.
I began learning C++ with this course 3 years ago and it gave me a great overview. It is compact but also covers all the basics you need to understand more advanced tutorials. -
@Artemix
they are kind of required for working with memory.. people get so scared of pointers for no reason. It is just an index to a byte in the memory space you are working in (most likely RAM(heap) or some array on the stack). Not that much of a C++ thing but rather a computer thing.. -
@Artemix
if you use smart pointers you still need to understand what a raw pointer is. And a smart pointer IS just a raw pointer, only with some extra functionality to it (which is not even always appropriate). So any C++ programmer needs to know about C pointers.
Related Rants
Best resources for learning C++ ??
question
c++
coding is life
coding
programmers
c