XOR
Everything on SkillVeris tagged XOR — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
What Are the Core Bit Manipulation Operators and When Do You Use Them?
Bit manipulation uses the six operators AND (&), OR (|), XOR (^), NOT (~), left shift (<<), and right shift (>>) to inspect, set, clear, or toggle individual b…
How Does the XOR Swap Technique Work, and Should You Actually Use It?
The XOR swap swaps two integer variables without a temporary variable by applying a = a ^ b, then b = a ^ b, then a = a ^ b, exploiting that XOR-ing a value wi…