c语言问题,为什么exit(1)中的 exit 会显示错误,说还没有定义,请高手帮忙,在下感激不尽,例题如下:

2024-11-06 05:13:20
推荐回答(3个)
回答1:

#include ----------------------> 要include 这个头文件 stdlib.h
void exit( int exit_code );

The exit() function stops the program. exit_code is passed on to be the return value of the program, where usually zero indicates success and non-zero indicates an error.

回答2:

你这是一个内部函数吧。。。你要调用相应的函数库的,包含相应的头文件的。。

回答3:

缺少头文件