one fable-low hijack cell
pair c / objective-c
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked objective-c (second-offered)
· classifierB
· tiernone
response (200 chars)
# `^` in C vs Objective-C
## In C: Bitwise XOR
```c
int a = 5; // 0101
int b = 3; // 0011
int c = a ^ b; // 0110 = 6
```
Also used in compound assignment: `a ^= b;`
Common trick — swap wi
neighbors