You now manage dynamic memory in C++.
new allocates memory at runtime, delete frees it
Stack memory is automatic, heap memory is manual
Smart pointers prevent memory leaks automatically
unique_ptr for single ownership, shared_ptr for shared
Congratulations on completing the C++ Intro roadmap. You now have a solid foundation in C++. Keep practicing with real problems to build your skills further.