为什么出现“缺少类型说明符-假定为int.注意C++不支持默认int”
问题描述:
答
int main()
{
return 0;
}
main函数定义前面加int,函数体最后加上return 0;。
答
int main