Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardC++sequencing and evaluation orderSingle-choice MCQ

In C++17, given the snippet below, what is guaranteed about the evaluation of the function-call arguments?

int f(int a, int b, int c); int g(); int h(); int k(); // call: int x = f(g(), h(), k());