main() in C, C++, Java, C#

前端 未结 9 1463
心在旅途
心在旅途 2020-12-11 06:20

Is main() (or Main()) in C, C++, Java or C#, a user-defined function or a built-in function?

9条回答
  •  时光取名叫无心
    2020-12-11 06:57

    In C/C++, it a standard so its built in and reconized.

    Java, not sure, no experience

    C# - Its a part of a class so its defined by you.

    All of these are defined by you -- you tell it what to do.

提交回复
热议问题