Operator Precedence and Associativity
In C language the precedence of operators plays an important role in evaluating an expression. If it is clear which operator is to be evaluated first it makes the expressions easily understandable.
For example ,
Int (*a)[13] a is a pointer to an array of thirteen integers(because here the bracket is given higher precedence).
Int *a[13] a is collection of 13 pointers that point to…
View On WordPress










