EXIT_SUCCESS" -- Manifest Constant" "

Indicate program executed successfully

#include <stdlib.h>

EXIT_SUCCESS is a manifest constant that is defined in the header stdlib.h. It is used as an argument to the function exit(), to indicate that the program executed successfully.

See Also