What is the output of the code below ?
int inc_by_two(int& i) { i+=2; return i; } int main(){ int a = 10, b; b = inc_by_two(a); cout << a << "," << b << endl; }
"10,12"
"12,12"
"10,10"
"12,10"