>=
Greater than or equal to
5>=3 returns true (1)
<=
Less than or equal to
5<=3 return false (0)
Logical Operators
Logical operators are used to combine expressions containing relation operators. In C, there are 3 logical operators:
Meaning Of
Operator
Example