Menu

Category C++

Arrays in C++

πŸŽ₯ C++ Arrays: Complete Guide with Examples | Playlist Playlist Link: C++ Series by TheCherno πŸ“š Introduction to Arrays Video Reference: Start at 0:00 Arrays store collections of elements contiguously...

Visibility in C++

πŸŽ₯ C++ Visibility: Access Modifiers Explained | Playlist Playlist Link: C++ Series by TheCherno πŸ“š Introduction to Visibility Video Reference: Start at 0:00 Visibility modifiers (private, protected, public) control access...

Virtual Functions in C++

πŸŽ₯ C++ Virtual Functions Playlist Link: C++ Series by TheCherno πŸ“š Introduction to Virtual Functions Video Reference: Start at 0:00 Virtual functions enable polymorphism in C++. They allow subclasses to...

Inheritance in C++

πŸŽ₯ C++ Inheritance: Complete Guide with Examples | Playlist Playlist Link: C++ Series by TheCherno πŸ“š Introduction to Inheritance Video Reference: Start at 0:00 Inheritance allows code reuse by creating...

Destructors in C++

πŸ“š C++ Destructors Notes: Comprehensive Guide Playlist Link: C++ Series by The Cherno πŸ” Introduction to Destructors Video Reference: Destructors in C++ Purpose: Destructors clean up resources when an object...

Constructors in C++

πŸ“š C++ Constructors Deep Dive [Playlist Link] πŸ—οΈ What is a Constructor? A constructor is a special method that automatically runs when an object is instantiated. It initializes memory and...

Enums in C++

πŸ“˜ C++ Enums (Enumerations) Playlist Link: C++ Series by The Cherno Video Reference: ENUMS in C++ 1. What Are Enums? Purpose: 🏷️ Name Values: Assign meaningful names to integer values...

Static Keyword in C++

C++ Static Keyword: Ultimate Guide By The Cherno | Full Playlist πŸ”— 1. Static Outside Classes/Structs πŸ“Œ Key Idea: static gives variables/functions internal linkage (visible only within their translation unit/file)....

Classes vs Structs in C++

C++ Classes vs Structs Notes By The Cherno | Full Playlist πŸ”— 1. Key Difference: Default Visibility πŸ“Œ Only Technical Difference: class: Members are private by default. struct: Members are...

Classes in C++

C++ Classes Notes By The Cherno | Full Playlist πŸ”— 1. What are Classes? πŸ“Œ Key Idea: Classes group data (variables) and functionality (methods) into reusable blueprints. Purpose: Organize code,...

References in C++

C++ References Notes By The Cherno | Full Playlist πŸ”— 1. What are References? πŸ“Œ Key Idea: References are aliases for existing variables (syntax sugar for pointers). Must reference an...