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
…
Top comments (0)