What is the precedence of arithmetic operators (from highest to lowest)?
Answers
Answered by
3
Answer:
<<The question is answered based on the assumption that the precedence is asked for arithmetic operators in C language.>>
All arithmetic operators in C language follow the left to right associativity. Their precedence from highest to lowest is as given below:
() => Brackets
% => Modulus
* => Multiplication
/ => Division
+ => Addition
- => Subtraction
In an arithmetic operation, the higher precedence operators are evaluated first followed by the lower value operators.
Similar questions