您的位置首页百科知识

C++中exit 函数包含在那个头文件中 怎么老是报error C2660: \"exit\" : function does not take 0 parameters

C++中exit 函数包含在那个头文件中 怎么老是报error C2660: \

exit包含在stdlib.h头文件中,

exit函数必须带参数

exit(0)或exit(1)

exit(0) 表示程序正常退出, exit(1)/exit(-1)表示程序异常退出。