C언어 연산자 우선순위

1 개념[ | ]

C언어 연산자 운선순위
  • C언어 연산자 우선순위 테이블
Category Operator Associativity
Postfix () [] -> . Left to right
Unary =+ - ! ~ ++ - - (type)* & sizeof Right to left
Multiplicative * / % Left to right
Additive =+ - Left to right
Shift << >> Left to right
Relational < <= > >= Left to right
Equality == != Left to right
Bitwise AND & Left to right
Bitwise XOR ^ Left to right
Bitwise OR | Left to right
Logical AND && Left to right
Logical OR || Left to right
Conditional ?: Right to left
Assignment = Right to left
Comma , Left to right

연산자 우선순위는 암기를 필요로 하지는 않으나 필요시 참고

괄첨화점 참별마뿔느

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}