1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-24 09:55:57 +02:00

chore: add resource under cpp:basic-operations:bitwise

This commit is contained in:
roadmap bot
2023-06-22 16:13:11 +01:00
parent fffccbe5b5
commit 310c6d4c55

View File

@@ -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.
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)