VC,C、C++Main 程序入口主函数使用示例:

#include <iostream> //C/C++ 中的 include 包含、预处理指定文件命令

int main()
{
    std::cout<<"hello,world!\n";
    return 0;
}