Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone say me? What is the difference between exit(0) and exit(1) in C language?

share|improve this question
The exit code. (Zing!) BUT: The man-page stays the same. Luckily – sehe Mar 30 '12 at 14:37

9 Answers

up vote 11 down vote accepted

What is the difference between exit(0) and exit(1) in C language?

exit(0) indicates successful program termination & it is fully portable, While
exit(1) (usually) indicates unsucessful termination. However, it's usage is non-portable.

Note that the C standard defines EXIT_SUCCESS and EXIT_FAILURE to return termination status from a C program.

0 and EXIT_SUCCESS are the values specified by the standard to indicate successful termination, however, only EXIT_FAILURE is the standard value for returning unsucessful termination. 1 is used for the same in many implementations though.


Reference:

C99 Standard: 7.20.4.3 The exit function
Para 5

Finally, control is returned to the host environment. If the value of status is zero or EXIT_SUCCESS, an implementation-defined form of the status successful termination is returned. If the value of status is EXIT_FAILURE , an implementation-defined form of the status unsuccessful termination is returned. Otherwise the status returned is implementation-defined.

share|improve this answer
Can you explain the non-portability? In particular, nonzero exit codes indicate different failure modes. It’s common for an application to use this to provide further information. A single constant (EXIT_FAILURE) is thus insufficient. – Konrad Rudolph Mar 30 '12 at 14:34
@KonradRudolph: I added the relevant citation. Hope that helps. – Alok Save Mar 30 '12 at 14:38
It's portable on POSIX and Windows. – Cat Plus Plus Mar 30 '12 at 14:42
1  
@Als: POSIX is a standard. C standard might say "implementation-defined" but that's not equivalent to saying "not portable", when implementations in fact do agree on the convention. – Cat Plus Plus Mar 30 '12 at 14:51
1  
@PeterM: Find me a platform that doesn't use this convention. It's likely to be some specialised/embedded/freestanding/whatever environment, where portability of exit is the least of your concerns (hell, there might not even be a C library available there. NOTHING IS PORTABLE!!!111). – Cat Plus Plus Mar 30 '12 at 14:52
show 2 more comments

The difference is what number gets returned to the OS. It's the same difference as this:

int main(int argc, char **argv) {
    return 0;
}

int main(int argc, char **argv) {
    return 1;
}

The convention is that 0 means "no errors" and nonzero means "there have been errors".

share|improve this answer
That is not the only difference. – Alok Save Mar 30 '12 at 14:29
@Als: please explain? – nightcracker Mar 30 '12 at 14:29
@Als: where did you read exit(1) is not portable? – nightcracker Mar 30 '12 at 14:30
Check my answer again I have the citation in place now. – Alok Save Mar 30 '12 at 14:39

exit(0) indicates that the program terminated without errors. exit(1) indicates that there were an error.

You can use different values other than 1 to differentiate between different kind of errors.

share|improve this answer

The difference is the value returned to the environment is 0 in the former case and 1 in the latter case:

$ ./prog_with_exit_0
$ echo $?
0
$

and

$ ./prog_with_exit_1
$ echo $?
1
$

Also note that the macros value EXIT_SUCCESS and EXIT_FAILURE used as an argument to exit function are implementation defined but are usually set to respectively 0 and a non-zero number. (POSIX requires EXIT_SUCCESS to be 0). So usually exit(0) means a success and exit(1) a failure.

An exit function call with an argument in main function is equivalent to the statement return with the same argument.

share|improve this answer

exit in the C language takes an integer representing an exit status.

Exit Success

Typically, an exit status of 0 is considered a success, or an intentional exit caused by the program's successful execution.

Exit Failure

An 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_SUCCESS is defined by the standard to be zero.

EXIT_FAILURE is not restricted by the standard to be one, but many systems do implement it as one.

share|improve this answer
This is incorrect. – Alok Save Mar 30 '12 at 14:39
1  
@Als, I reworded the Exit Failure portion that you most likely considered incorrect. If you have any other concerns, feel free to explain. – Sam DeHaan Mar 30 '12 at 14:41
Have a look at my answer, It explains why I deem this incorrect. – Alok Save Mar 30 '12 at 14:44
All the answers given are all similar, if this is wrong, every answer must be wrong. – user221287 Mar 30 '12 at 14:45
1  
@RishabhPoddar: Follow the advice in comment above yours. All answers are NOT same and this answer is still Incorrect. – Alok Save Mar 30 '12 at 14:47
show 2 more comments

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.

share|improve this answer

When the executable ends (exits) it returns a value to the shell that ran it. exit(0) usually indicates that all is well, whilst exit(1) indicates that something has gone amiss.

share|improve this answer

exit() should always be called with an integer value and non-zero values are used as error codes.

See also: use of exit() function

share|improve this answer

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...........

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.