Coding

C Language Operator Precedence and Associativity

From the reference link below, I made this C operator table for quick reference. Operator Table Priority Category Operator Associativity 1​ Unary Postfix ++ — Suffix/postfix increment and decrement, e.g., var++;. () Function call, e.g., func (param). [] Array subscripting, e.g., x=X[1];. . Structure and union member access, e.g., x=Param.x;. Read more…