Day 14 Recap Questions
- How do we read/write binary files in C?
- What character represents the bitwise XOR operation? How does it differ from the OR operation?
- What happens if you apply the bitwise operation on an integer value? (extra: what if we apply to floats)
- What is the result of
(15 >> 2) || 7
? - What is the result of
(15 >> 2) | 7
?