one fable-low hijack cell
pair c / kotlin
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `^` Operator: C vs Kotlin
In **C**, `^` is the bitwise XOR operator:
```c
int a = 5 ^ 3; // 6 (binary: 101 ^ 011 = 110)
```
In **Kotlin**, there is **no `^` operator**. Instead, you use the infi
neighbors