I’m moving from C# to C++, one of priority topic for me is pointer. I’m reading some book and some blog post about pointer and I understand its basic concept. Now I want to learn about pointer by practicing it.
I try to search on google, unfortunately not thing found. Are there anything can help me study and practices on C++ pointer?
Just google for “learn C pointers”. For example, you’ll find stuff like http://computer.howstuffworks.com/c20.htm
Once you understand what a pointer is, what it does, and how it is managed, start using C++ smart pointers which take care of some of the grunt work for you.