I have the below two (related) questions.
- Is the order of execution of functions called on other function's parameters list defined by C or C++ standard?
Does the actual calling convention used by the compiler influence the order of function execution in the below statement in C/C++?
func1(func2(), func3());
Thanks for your answers.