You are taking quiz cppquiz.org/q/zwiot. After 0 of 10 questions, you have 0.00 points.

Question #9 Difficulty: 1

According to the C++17 standard, what is the output of this program?

    #include <iostream>

int f(int &a, int &b) {
  a = 3;
  b = 4;
  return a + b;
}

int main() {
  int a = 1;
  int b = 2;
  int c = f(a, a);
  std::cout << a << b << c;
}

Hint:

Aliasing

Answer:

Mode : Quiz

If you want to quit the current quiz and go back to training mode, click here.