KernelDebugRef - Binary Operators
Appearance
Reprint Courtesy of International Business Machines Corporation, © International Business Machines Corporation
The following operators evaluate the relationship of two arguments:
- ( ) Parentheses, used to change order of evaluation
- : Address binder, binds segment/selector and offsets
- * Multiplication
- / Division
- MOD Modulo (remainder)
- + Addition
- - Subtraction
- > Greater than relational operator
- < Less than relational operator
- >= Greater than or equal to relational operator
- <= Less than or equal to relational operator
- == Equal to operator
- != Not equal to relational operator
- AND Bitwise AND
- XOR Bitwise exclusive OR
- OR Bitwise inclusive OR
- && Logical AND
- || Logical OR