title | ms.custom | ms.date | ms.reviewer | ms.suite | ms.technology | ms.tgt_pltfrm | ms.topic | dev_langs | helpviewer_keywords | ms.assetid | caps.latest.revision | author | ms.author | manager | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Expressions with Binary Operators | Microsoft Docs |
11/04/2016 |
|
language-reference |
|
|
6dea3df4-a4bd-42c3-9807-4a27c120ac9a |
7 |
mikeblome |
mblome |
ghogen |
Binary operators act on two operands in an expression. The binary operators are:
-
-
Multiplication (*)
-
Division (/)
-
Modulus (%)
-
-
-
Addition (+)
-
Subtraction (-)
-
-
-
Right shift (>>)
-
Left shift (<<)
-
-
Relational and equality operators
-
Less than (<)
-
Greater than (>)
-
Less than or equal to (<=)
-
Greater than or equal to (>=)
-
Equal to (==)
-
Not equal to (!=)
-
-
Bitwise operators
-
Logical operators
-
-
Assignment (=)
-
Addition assignment (+=)
-
Subtraction assignment (-=)
-
Multiplication assignment (*=)
-
Division assignment (/=)
-
Modulus assignment (%=)
-
Left shift assignment (<<=)
-
Right shift assignment (>>=)
-
Bitwise AND assignment (&=)
-
Bitwise exclusive OR assignment (^=)
-
Bitwise inclusive OR assignment (|=)
-
-
Comma Operator (,)