Binary operators. Mostly used for IF expressions. AND:Binary code of b#: 00100010
Binary code of c#: 00100100 Binary code of a#: 00100000
Only bits that are available in b# AND c# will be set in a#. OR: Binary code of b#: 00100010 Binary code of c#: 00100100 Binary code of a#: 00100110
All bits that are available in b# OR c# will be set in a#. Attention: AND and OR follow the DiNGS operator-style and do evaluate from left to right if no brackets are set. |