Hierarchy of Operations in C language
While executing an arithmetic statement, which has two or more operators, we may have some problems with how it is executed exactly. For example, does the expression 2 * x – 3 * y correspond to (2x) – (3y) or 2 (x-3y)? Similarly, A / B * C correspond to A / (B * C) … Read more