Week 8 : Mastering OOP Inheritance

I dedicated Days 50-56 to mastering inheritance in object-oriented programming. Here's a summary of my journey through different inheritance patterns and what I learned along the way. Day 50: ...
0 Read More

"Hello C++"

Basics of C++ It's an object oriented language It's statically typed language, meaning we know the data type of the variable (we define it) We can manage memory in it, as it has concept of pointers It...
0 Read More

Day 02

Written on: 06 April, 2025. 📝 Comments in C++ We use comments to explain what a code do. It is ignored by compiler and is used for other developers: ⛶// This is a single-line comment /* ...
0 Read More

Motivation behind C++ Concepts

Motivation behind C++ Concepts
C++ 20 introduced concepts. What are they? Why should I care about them? How do I use them?Concepts are a powerful tool to help you write generic code with restrictions evaluated at compile time. What...
0 Read More