c语言问题,为啥exit(1)中的 exit 会显示错误,说还没有定义,请高手帮忙,在下感激不尽,例题如下:
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言问题,为啥exit(1)中的 exit 会显示错误,说还没有定义,请高手帮忙,在下感激不尽,例题如下:相关的知识,希望对你有一定的参考价值。
#include"stdio.h"
void main()
FILE *p1,*p2,*p3;
char ch;
if((p1=fopen("test.txt","wt+"))==NULL)
printf("can not open the file :");
exit(1);
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. 参考技术B 你这是一个内部函数吧。。。你要调用相应的函数库的,包含相应的头文件的。。本回答被提问者采纳 参考技术C 缺少头文件
以上是关于c语言问题,为啥exit(1)中的 exit 会显示错误,说还没有定义,请高手帮忙,在下感激不尽,例题如下:的主要内容,如果未能解决你的问题,请参考以下文章