C++ Interview Questions Posted on September 1, 2017October 9, 2017 by TFE Times Prev9 of 17Next According to the C++11 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; } Answer Related