57

单选题 57 /61

有函数定义:
void test(int a){} 
void test(float a){} 
则以下调用错误的是:

参考答案

test(1);
test(‘c’);
test(2+’d’);
test(0.5);