如下程序编译错误:
#include<iostream>
using namespace std;
void test(int a = 0);
void test(int a = 0)
{
}
int main()
{
return 0;
}
想必, 都知道怎么改了吧!
如下程序编译错误:
#include<iostream>
using namespace std;
void test(int a = 0);
void test(int a = 0)
{
}
int main()
{
return 0;
}
想必, 都知道怎么改了吧!