Great work! One thing I would change in the C++ Pointers & References is that things like: auto b = make_shared<char>('b'); is preferred over shared_ptr<char> ptr_b(new char('b')); This style is better because it's…
Great work! One thing I would change in the C++ Pointers & References is that things like: auto b = make_shared<char>('b'); is preferred over shared_ptr<char> ptr_b(new char('b')); This style is better because it's…