单选题 难度 2
函数里改了参数,外面会变吗?
下面代码的输出是( )。 void g(int a) { a = 100; } // main: int a = 5; g(a); cout << a << endl;