본문 바로가기

C/Reference

[C] 연산자 우선순위

반응형

https://msdn.microsoft.com/ko-kr/library/2bxt6kc4.aspx

 

Precedence and order of evaluation

Learn more about: Precedence and order of evaluation

learn.microsoft.com

동일 순위끼리 봤을 때, 왼쪽에 있는 것이 더 순위가 높다.

(expr++가 *보다 우선순위가 높다)

 

int *a;
int b = 3;
a = &b;
*a++;        // *(a++)과 같은 결과다!!!
반응형