I read from the book K&R an example of precedence:
x = f() + g();
f may be evaluated before g or vice versa
What I know is that the order of evaluation of paraentheses ()
is higher than the +
and after that comes the =
. Besides for the ()
the order of evaluation will be from left to right. So if I am right why did he say may be evaluated as if it is not certain ?
The question is a little bit silly but very important for me to clear the unclear.