Posts
All the articles I've posted.
-
C++ enum class vs enum: Scoped Enums Explained
C++ enum class vs enum: scoped enums prevent name clashes and block implicit int conversion. Learn the difference, the syntax, and why enum class is preferred.
-
C++ float vs double: Which One Should You Use?
C++ float vs double explained: float uses 4 bytes and ~7 digits, double uses 8 bytes and ~15. Learn which to pick and why double is the safer default.
-
C++ new vs malloc: What's the Difference and Which to Use
C++ new vs malloc explained: new calls constructors and is type-safe, malloc hands you raw memory. Learn the real differences and why new is preferred in C++.
-
C++ priority_queue: A Beginner's Guide with Examples
Learn the C++ priority_queue from scratch: push, pop, and top, plus how to build a min-heap and use custom comparators. Beginner-friendly examples included.