4 Operators
4 Operators
>= Checks if the value of left operand is greater (A >= B) is not true.
than or equal to the value of right operand, if yes
then condition becomes true.
<= Checks if the value of left operand is less than or (A <= B) is true.
equal to the value of right operand, if yes then
condition becomes true.
Logical Operators
Operat Description
or
&& Returns true if both statements are true
Operator Description
& Binary AND Operator copies a bit to the result if it exists in both
operands.
^ Binary XOR Operator copies the bit if it is set in one operand but not
both.
Miscellaneous