one fable-low hijack cell
pair c / php
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` Operator in PHP vs C
The `||` (logical OR) operator works similarly in both languages, with a few differences:
## C
```c
int a = 5, b = 0;
if (a || b) {
printf("True\n"); // prints, beca
neighbors