return EXIT_SUCCESS;

就是 return 0;

 

EXIT_SUCCESS是C语言头文件库中定义的一个符号常量。

头文件stdlib.h中:#include <cstdlib>

 /* Definition of the argument values for the exit() function */

#define EXIT_SUCCESS 0

#define EXIT_FAILURE 1 

 

posted @ 2019-07-23 17:04  ostartech  阅读(995)  评论(0编辑  收藏  举报