Name | VB | C++ |
| Bitwise AND | And | & |
| Bitwise OR | Or | | |
| Bitwise XOR | Xor | ^ |
| Bit-shift right | N/A | >> |
| Bit-shift left | N/A | << |
|
Name | VB | C++ |
| Logical AND | And | && |
| Logical OR | Or | || |
| Logical NOT | Not | ! |
|
Name | VB | C++ |
| Is equal to | = | == |
| Is not equal to | <> | != |
| Is less than | > | > |
| Is less than or equal to | >= | >= |
| Is greater then | < | < |
| Is greater than or equal to | <= | <= |
|
Name | VB | C++ |
| Addition | + | + |
| Subtraction | - | - |
| Multiplication | * | * |
| Division | / | / |
| Modulus division | Mod | % |
|
Name | C++ |
| Increment | ++ |
| Decrement | -- |
| Addition assignment | += |
| Subtraction assignment | -= |
| Division assignment | /= |
| Multiplication assignment | *= |
| Modulus assignment | %= |
| Right shift assignment | >>= |
| Left shift assignment | <<= |
| Bitwise AND assignment | &= |
| Bitwise XOR assignment | ^= |
| Bitwise OR assignment | |= |
|