Tag: tutorial
All the articles with the tag "tutorial".
-
Variable Scope in C++: Local, Global, and Block Scope Explained
Understand variable scope in C++ with examples. Learn local vs global variables, block scope, shadowing, and why global variables cause hard-to-find bugs.
-
Virtual Destructor in C++: Why You Need One and When
Learn why C++ needs virtual destructors. See the memory leak that happens without one, the one-line fix, and the simple rule for when to add one to a class.
-
C++ Comments Explained: Single-Line, Multi-Line, and When to Use Them
Updated:Learn how to write comments in C++ with // and /* */, see clear examples, and find out when a comment really helps and when cleaner code is the better fix.
-
C++ Enum Tutorial: enum and enum class Explained
Updated:Learn C++ enums from scratch. This beginner guide covers plain enums, enum class (scoped enums), when to use each, and why enum class is preferred in modern C++.