one fable-low hijack cell
pair c / cpp
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked cpp (second-offered)
· classifierB
· tiernone
response (200 chars)
`^` is the **bitwise XOR operator** in both C and C++.
## How it works
XOR compares bits: result is `1` if the bits differ, `0` if they're the same.
```c
int a = 5; // 0101
int b = 3; //
neighbors