one fable-low hijack cell
pair c / python
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in C vs `or` in Python
If you're asking about the logical OR operator:
## C
```c
int a = 5, b = 0;
if (a || b) {
printf("True\n");
}
```
- Uses `||`
- Returns `1` (true) or `0` (false)
-
neighbors