devxlogo

The Prototype of Main()

The Prototype of Main()

In pre-standard C++, the prototype of main() didn’t have a return value. On some compilers, it was:

   main() /* no explicit return value; int assumed*/

While others used one of the following:

   int main()  void main()

This chaotic situation was changed recently. Now the Standard specifies the following form:

   int main()

Although most compilers still accept void as a return value, this is an obsolescent feature. You should always use the following form:

   int main()
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist