我接受了here
的教育void f();
void f(int a) {
printf("%d", a);
}
参数类型列表"胜利"。 我做了以下......
int fun(void); //parameter type list
int fun(int a, double b)//parameter type list
{
printf("%d, %f", a, b);
return 0;
}
我原本期望编译器会抛出错误(因为c中不可能出现重载),但它并没有
在这方面,有谁可以帮助我?
感谢。