This is C++ · medium, lesson 1: unique_ptr. Read the teaching and the stills before the checks. The quizzes are open book and test the subject — C++ itself — not product rules or layout trivia.
Lessons · C++ Medium · Lesson 1 of 10 · On the house
unique_ptr
One owner.

You already know Introductory and Easy. Medium assumes those habits and asks for sharper tools.
std::unique_ptr owns uniquely. make_unique creates one.
Cannot copy; can move.
Destructor deletes the object.
Prefer unique_ptr to raw owning pointers.
up
#include <memory>
auto p = std::make_unique<int>(3);Sit with that still. Trace it top to bottom. Name each piece. The exercise asks you to match its essence.
If something fails when you try it yourself, change one thing. Read the error. Return to the still. I will not rush you.
Quiz
What does unique_ptr express?
Quiz
Can you copy a unique_ptr?
Quiz
Which helper creates a unique_ptr?
Quiz
Based on today's teaching, which claim is right?
Quiz
Based on today's teaching, which claim is right?
Quiz
Based on today's teaching, which claim is right?
Quiz
Based on today's teaching, which claim is right?
Quiz
Based on today's teaching, which claim is right?
Quiz
Based on today's teaching, which claim is right?
Check
Match the still for: unique_ptr.
That is the lesson. When every quiz and exercise on this page is green, mark it passed. Next lesson when you are ready.
Open-book: the answers are on this page. Pass every quiz and check (10) to mark the lesson done. This visit: 0/10.