KernelDebugRef - Operator Precedence: Difference between revisions
Appearance
Created page with "{{IBM-Reprint}} {{KernelDebugRef}} 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 ope..." |
(No difference)
|
Revision as of 23:05, 3 May 2025
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