下面C++代码的输出是 15 。( )
void foo(int x) { x += 5; } int main() { int a = 10; foo(a); cout << a << endl; }