Mention the order of precedence of operators with explanation?
Answers
Answered by
1
Answer:
Within an expression, higher precedence operators will be evaluated first.
Answered by
14
Within an expression, higher precedence operators will be evaluated first.
...
Operators Precedence in C.
Category Operator Associativity
Logical AND && Left to right
Logical OR || Left to right
Conditional ?: Right to left
Assignment = += -= *= /= %=>>= <<= &= ^= |=
Similar questions