单选题 难度 2
少传一个参数会怎样?
下面代码的输出是( )。 int add(int a, int b = 10) { return a + b; } // main: cout << add(3) << " " << add(3, 4) << endl;