noknow.dev
Sign inSign up
Course overview
C++ Fundamentals
0 / 39 lessons0%

Getting Started

  • Hello, World!
  • Variables and Data Types
  • Arithmetic and Operators
  • Working with std::string
  • Type Conversion and Casting

Control Flow

  • if / else if / else
  • switch / case
  • while and do-while Loops
  • for Loops
  • break, continue, and Finding Primes

Functions

  • Writing Functions
  • Pass by Value vs. Pass by Reference
  • Overloading and Default Parameters
  • Recursion

Arrays and Strings

  • C-style Arrays
  • std::vector — Dynamic Arrays
  • std::string Deep Dive
  • 2D Arrays and Matrices

Pointers and Memory

  • Memory Addresses and Pointers
  • Dynamic Memory: new and delete
  • References vs Pointers

Object-Oriented Programming

  • Classes and Objects
  • Constructors and Destructors
  • Inheritance
  • Virtual Functions and Polymorphism
  • Operator Overloading

The Standard Template Library

  • std::vector in Depth
  • std::map and std::unordered_map
  • std::set and Sorted Unique Collections
  • STL Algorithms

Templates and Generic Programming

  • Function Templates
  • Class Templates

Modern C++ (C++11/14/17)

  • auto and Range-based for
  • Lambda Functions
  • Smart Pointers
  • Move Semantics

Error Handling and Exceptions

  • try / catch / throw
  • Custom Exception Classes
  • RAII and Resource Management

Smart Pointers

0m 00s

Automatic Memory Management

Smart pointers (from #include <memory>) eliminate manual new/delete:

unique_ptr — sole ownership

auto p = make_unique<int>(42);
cout << *p;    // 42
// Memory freed automatically when p leaves scope!

auto q = move(p);   // transfer ownership; p is now null

shared_ptr — shared ownership

auto a = make_shared<int>(100);
auto b = a;          // both own the memory
cout << a.use_count(); // 2
b.reset();
cout << a.use_count(); // 1
// Memory freed when the last shared_ptr is destroyed

Rule of thumb

  • unique_ptr — default; zero overhead; one owner
  • shared_ptr — multiple owners (graph nodes, caches)
  • Raw pointer — only for non-owning observation

Your Task

Write makeRange(int from, int to) returning a unique_ptr<vector<int>> with all integers from from to to inclusive.

Back
cppCtrl+Enter to run
Output

Click "Run" to execute your code.