one fable-low hijack cell
pair c / elixir
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `^` in C vs Elixir
The `^` symbol means very different things in these two languages:
## C — Bitwise XOR
```c
int a = 5; // 0101
int b = 3; // 0011
int c = a ^ b; // 0110 → 6
```
Common
neighbors