RAD Studio
ContentsIndex
PreviousUpNext
The Value main() Returns

The value returned by main is the status code of the program; it must be an int. If, however, your program uses the routine exit (or _exit) to terminate, the value returned by main is the argument passed to the call to exit (or to _exit). 

For example, if your program contains the call

exit(1)
the status is 1.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!