프로그래밍/C, C++
연자산 우선 순위 (비트 연산자 포함)
Dev-Drake
2019. 6. 28. 10:53
반응형
Operator Name
! | Logical NOT. Bang. |
++ -- | Increment and decrement operators. |
* / % | Multiplicative operators. |
+ - | Additive operators. |
<< >> | Shift operators. |
< > <= >= | Inequality comparators. |
== != | Equality comparators |
& | Bitwise AND. |
^ | Bitwise XOR. |
| | Bitwise OR. |
&& | Logical AND. |
|| | Logical OR. |
?: | Conditional. |
= op= | Assignment. |
반응형