EXIT_SUCCESS EXIT_FAILURE
在vc++6.0下头文件stdlib.h中定义如下:
/* Definition of the argument values for the exit() function */
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
在codeblocks的stdlib.h中这两个符号常量的注释为: These values may be used as exit status codes。
在vc++6.0下头文件stdlib.h中定义如下:
/* Definition of the argument values for the exit() function */
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
在codeblocks的stdlib.h中这两个符号常量的注释为: These values may be used as exit status codes。