📜  为什么在 int main 中返回 0 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:45.095000             🧑  作者: Mango

代码示例1
//So return 0 just give command to compiler that here code end ...
int main()
{
    cout<<"Yes";//->this will print as its before return 0 written.
    return 0;
    cout<<"Nope";//->this will not print as its after return 0 written.
}