在C99标准中,main函数只有以下两种形式:
int main(void)int main(int argc, char* argv[])
其他的声明形式包括main()、void main()都属于unspecified behavior。