应该是什么严格支持c99的编译器
main函数必须是int的
:
根据标准main函数是这样的
int main()
{
...
return 0;
}
main函数必须是int的
:
根据标准main函数是这样的
int main()
{
...
return 0;
}
Murphy's Law :
If there are two or more ways to do something, and one of those ways can result in a catastrophe, then someone will do it.