Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

>= Greater Than or Equal Operator

This operator evaluates to non-zero value if first operand is greater than or equal to the second operand or to zero value otherwise.

Syntax:

exp1 >= exp2

Usage:

8 >= 7               // evaluates to 1
2 >= 2               // evaluates to 1
3 >= 5               // evaluates to 0