EXIT_SUCCESS, EXIT_FAILURE

来自cppreference.com
< c‎ | program

在头文件 <stdlib.h> 中定义
#define EXIT_SUCCESS /*implementation defined*/
#define EXIT_FAILURE /*implementation defined*/
EXIT_SUCCESSEXIT_FAILURE宏扩展到一个整数表达式,表示程序执行状态.
原文:
The EXIT_SUCCESS and EXIT_FAILURE macros expand into an integral expression and indicate program execution status.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
常数
原文:
Constant
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
Explanation
EXIT_SUCCESS
成功执行的程序
原文:
successful execution of a program
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
EXIT_FAILURE
程序执行的失败
原文:
unsuccessful execution of a program
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 另请参阅

C++ documentation for EXIT_SUCCESS, EXIT_FAILURE