单选题 难度 2
只多了一个 & 符号。
下面代码的输出是( )。 void g(int &a) { a = 100; } // main: int a = 5; g(a); cout << a << endl;