1.

What Is The Order Of Operator Precedence, Left To Right Or Right To Left ?

Answer»

None of them is standard. C does not ALWAYS start EVALUATING LEFT to right or right to left. Normally, FUNCTION calls are done FIRST, followed by complex expressions and then simple expressions. That is why it is best to use parenthesis in all expressions, without depending on precedence.

None of them is standard. C does not always start evaluating left to right or right to left. Normally, function calls are done first, followed by complex expressions and then simple expressions. That is why it is best to use parenthesis in all expressions, without depending on precedence.



Discussion

No Comment Found