单项选择题

有如下程序: #include using namespace std; void fl(int& x){x++;} void f2(int x){++x;} int main(){ int x=10,y=12; f1(x); f2(y); cout<
A.22
B.23
C.24
D.25