answersLogoWhite

0

The main function in C++ is no different to any other function, other than it is the only required function; it defines the entry point of the application. The minimal main function (and therefore the minimal C++ program) is:

#include <stdio.h>

int main()

{

return(0);

}

The main function must always return an integer to the caller (even if not required by the caller). A return value of zero is usually used to indicate the program terminated successfully, however it is up to the programmer to decide what the return value actually means to the caller. It is common to return (-1) upon an unrecoverable error.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What an example of a function?

In C-programming: int main (void) { return 0; }


What is the use of return function in C programming?

To return the exp. or const to the main fumction.


Why is function main special?

main() is so special because it starts the execution of program. or we can say that it is entry gate of any programming language


What do you understand by the left and right parenthesis in main method in C programming?

I understand they have the same meaning as they do for any function in C; to separate the function name from its arguments.


What is the main function of fibro cartilage?

Fibrocartilage tissue provides support and rigidity to attached/surrounding structures.


What is the function of shock cord on a rocket?

The shock cord keeps the nose cone attached to the main tube.


What is return means in programming?

A return statement exits the function in which it is declared and gives control to the calling code. Returning from the main function exits the program and gives control to the execution environment.


What significance is attached to the name main in c programming?

This is the function that the programs begins execution when it starts. A computer program needs to specify the location where execution of the program is to begin. Assembler languages generally allow specification of an entry point for a program. High level languages use as a starting point the only program or program file that is not specified as a subroutine, function, or subprogram. Since all code in C is a function or subroutine, the way to specify the starting entry point of an executable is by using the name "main". When the "main" module is combined with other modules and library entries using link, ld, bind, iewl, or whatever the systems calls its linking utility, the created program (executable or load module) will have the routine labeled "main" marked as its starting entry point.


Types of main function in C programming?

minimalist: int main (void); standard: int main (int argc, char **argv); unix-only: int main (int argc, char **argv, char **envp);


Why should a function or a variable be declared before its first use?

It is somewhat syntax of programming. But when program runs,device known as pre-processor process statements before main function. So when we use that function inside main function it will get idea and run directly without showing any error. So for compilers simplicity and fast execution purpose it is necessary to declare function before its use.


What is the main function of an overload?

When a person has information overload, it means that they receive so much information at one time that their brain cannot process it all.


Characteristictics of high level programming?

The main characteristic of all high-level programming is portability.