one fable-low hijack cell
pair c / zig
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
It looks like you're asking about the `^` operator in Zig compared to C. Here's the rundown:
## `^` in both languages = bitwise XOR
**C:**
```c
int a = 5 ^ 3; // 6 (0b101 ^ 0b011 = 0b110)
```
**Z
neighbors