Can anyone say me? What is the difference between exit(0) and exit(1) in C language?
|
|
What is the difference between
Note that the C standard defines
Reference: C99 Standard: 7.20.4.3 The
|
|||||||||||||||
|
|
The difference is what number gets returned to the OS. It's the same difference as this:
The convention is that |
|||||||||
|
|
|
You can use different values other than |
|||
|
|
|
The difference is the value returned to the environment is
and
Also note that the macros value An |
||||
|
|
|
Exit SuccessTypically, an exit status of 0 is considered a success, or an intentional exit caused by the program's successful execution. Exit FailureAn exit status of 1 is considered a failure, and most commonly means that the program had to exit for some reason, and was not able to successfully complete everything in the normal program flow. Here's a GNU Resource talking about Exit Status. As @Als has stated, two constants should be used in place of 0 and 1.
|
|||||||||||||||
|
|
exit(0) behave like return 0 in main() function, exit(1) behave like return 1. The standart is, that main function return 0, if program ended succesfully while non-zero value means that program was terminated with some kind of error. |
|||
|
|
|
When the executable ends (exits) it returns a value to the shell that ran it. |
|||
|
|
|
exit() should always be called with an integer value and non-zero values are used as error codes. See also: use of exit() function |
|||
|
|
|
exit(0) means Program(Process) terminate normally succesfully..... exit(1) means program(process) terminate normally unsuccessfully.. if you want to observe this thing u must know singnal handling and processmanagment in unix ... know abt sigaction,,,watipid()..for()...such....API........... |
|||
|
|
