为什么又是void main。。。
c/c++中没有void main的标准
在很多编译器中是无法编译通过的
C++ 之父 Bjarne Stroustrup 在他的主页上的 FAQ 中明确地写着 The definition void main( ) { /* ... */ } is not and never has been C++, nor has it even been C.( void main( ) 从来就不存在于 C++ 或者 C )
c99中就两种
int main( void )
int main( int argc, char *argv[] )