The following comparison operators return 1 or 0 to indicate whether or the statement is true or false respectively.
- Equal to (a == b)
- Not equal to (a != b)
- Greater than (a > b)
- Less than (a < b)
- Greater than or equal to (a >= b)
- Less than or equal to (a <= b)