单项选择题

有如下程序: #include using namespace std; void f(int x, int &y) {int z=x; x=y; y=z;} int main() { int x=0,y=1; f(x,y); cout<
A.00
B.01
C.10
D.11