- logical AND and OR in c
- 0 && 0 -> 0
- 1 && 0 -> 0
- 1 && 1 -> 1
- 2 && 1 -> 1
- -1 && -1 -> 1
- -100 && 0 -> 0
- 0 || 0 -> 0
- 1 || 0 -> 1
- 0 || 1 -> 1
- -1 || 0 -> 1
- -100 || 20 -> 1
- Returns 1 if both operands are non zero values
- Returns 1 if one of the operands is a non zero value