kolejność oceny podwyrażeń

ObejrzałemSO / IEC 9899: 201x w J.1 Nieokreślone zachowanie:

"The order in which subexpressions are evaluated and the order in which side effects
take place, except as specified for the function-call (), &&, ||, ?:, and comma
operators (6.5)."

Czy to znaczy, że w

func1() + func2();

func2 () może być utworzony przed func1 (), a nawet podczas func1 ()?

questionAnswers(1)

yourAnswerToTheQuestion