在 C++中,以下哪个函数调用会造成栈溢出?( )
int foo() { return 0; }
int bar() { int x=1; return x; }
void baz() { int a[1000]; baz(); }
void qux() { return; }