Posts
All the articles I've posted.
-
C++ Bitwise Operators Explained: AND, OR, XOR, Shift, and NOT for Beginners
Updated:Learn C++ bitwise operators with working code examples. Covers &, |, ^, ~, <<, >> with practical use cases and bit manipulation patterns for beginners.
-
How to Create a C++ DLL in Visual Studio (Step by Step)
Updated:Learn how to create a C++ DLL in Visual Studio, export functions with __declspec(dllexport), and use the DLL from another app — a clear, beginner-friendly walkthrough.
-
How to Find an Element in a Vector in C++ (std::find)
Updated:Learn how to find an element in a vector in C++ with std::find: check if a value exists, get its index, and use find_if with a lambda for custom conditions.
-
FizzBuzz in C++: The Classic Beginner Problem Explained Step by Step
FizzBuzz in C++ explained for beginners: print 1 to 100 with Fizz, Buzz, and FizzBuzz using a simple for loop, the modulo operator, and clear if-else logic.