Modern C++ Made Simple

Whether you're new to coding or switching careers, we've got you covered. Learn C++ from the ground up starting with our introductory course.

Intro to C++ Programming

Beginner Course

Intro to C++ Programming
Become a software engineer with C++. Starting from the basics, we guide you step by step along the way
Progress0 of 60 Completed
Updated
View

First Lesson

No upcoming lessons available.

Get Started

Intermediate Course

Game Development with SDL2
Learn C++ and SDL development by creating hands on, practical projects inspired by classic retro games
Progress0 of 129 Completed
Updated
View

First Lesson

No upcoming lessons available.

Get Started

Intermediate Course

Professional C++
Comprehensive course covering advanced concepts, and how to use them on large-scale projects.
Progress0 of 128 Completed
Updated
View

First Lesson

No upcoming lessons available.

Get Started

Recent Updates

New content is added on a regular basis, and we consistently update, improve, and revise what's already available.

Intro to C++ Programming

Function Arguments and Parameters

Making our functions more useful and dynamic by providing them with additional values to use in their execution

• Updated
View
Intro to C++ Programming

Structs and Aggregate Initialization

Discover the role of structs, how they differ from classes, and how to initialize them without requiring a constructor.

• Updated
View
Intro to C++ Programming

Member Initializer Lists

This lesson introduces Member Initializer Lists, focusing on their advantages for performance and readability, and how to use them effectively

• Updated
View
Intro to C++ Programming

Managing Memory Manually

Learn the techniques and pitfalls of manual memory management in C++

• Updated
View
Professional C++

C-Style Arrays

A detailed guide to working with classic C-style arrays within C++, and why we should avoid them where possible

• Updated
View
CMake for C++

Building C++ Programs

Before working with CMake, it's useful to understand the tools it orchestrates. This lesson guides you through setting up a C++ toolchain.

• New
View
Intro to C++ Programming

Structured Binding

This lesson introduces Structured Binding, a handy tool for unpacking simple data structures

• Updated
View
Intro to C++ Programming

Bitwise Operators and Bit Flags

Unravel the fundamentals of bitwise operators and bit flags in this practical lesson

• Updated
View
Intro to C++ Programming

Automatic Type Deduction using auto

This lesson covers how we can ask the compiler to infer what types we are using through the auto keyword

• Updated
View
Game Development with SDL2

The SDL Library and Cross-Platform Development

An introduction to the SDL library, the problem it solves, and why we're using it to learn C++

• New
View
Professional C++

Errors as Values and std::expected

Learn how to handle errors as values in C++23 using the std::expected type

• New
View
Professional C++

Removal Algorithms

An overview of the key C++ standard library algorithms for removing objects from containers. We cover remove(), remove_if(), remove_copy(), and remove_copy_if().

• Updated
View