From 310c6d4c55ecda1cbb15aa690d91fcd5f1bffec9 Mon Sep 17 00:00:00 2001 From: roadmap bot <135830415+roadmap-bot@users.noreply.github.com> Date: Thu, 22 Jun 2023 16:13:11 +0100 Subject: [PATCH] chore: add resource under cpp:basic-operations:bitwise --- .../roadmaps/cpp/content/102-basic-operations/103-bitwise.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/cpp/content/102-basic-operations/103-bitwise.md b/src/data/roadmaps/cpp/content/102-basic-operations/103-bitwise.md index 02c77a694..caeb12a96 100644 --- a/src/data/roadmaps/cpp/content/102-basic-operations/103-bitwise.md +++ b/src/data/roadmaps/cpp/content/102-basic-operations/103-bitwise.md @@ -64,4 +64,6 @@ Example: int result = 5 >> 1; // result will be 2 (0000 0101 >> 1 = 0000 0010) ``` -These were the most common bitwise operations in C++. Remember to use them carefully and understand their behavior when applied to specific data types and scenarios. \ No newline at end of file +These were the most common bitwise operations in C++. Remember to use them carefully and understand their behavior when applied to specific data types and scenarios. +- [Intro to Binary and Bitwise Operators in C++](https://youtu.be/kxwrt7og0gi) +- [Bitwise AND (&), OR (|), XOR (^) and NOT (~) in C++](https://youtu.be/hoqhw6_1naa) \ No newline at end of file