给出函数声明:void func(int,int y=1);下列函数调用中,错误的是
给出函数声明:void func(int,int y=1);下列函数调用中,错误的是
A、func();
B、func(0);
C、func(1);
D、func(2,3);
【正确答案】:A
Top