当前位置:   article > 正文

C语言中exit(0) 、exit(1) 和return的区别_c语言 exit(1)

c语言 exit(1)

文字描述

return是语言级别的,它表示了调用堆栈的返回;而exit是系统调用级别的,它表示了一个进程的结束。
return是返回函数调用,如果返回的是main函数,则为退出程序 。exit是在调用处强行退出程序,运行一次程序就结束。

代码验证

return 表示返回 , 函数返回

#include <stdio.h>
int main()
{
	printf("It's OK\n");
	printf("It's not OK\n");
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

exit 表示程序退出

#include <stdio.h>
int main()
{
	printf("It's OK\n");
	printf("It's not OK\n");
	exit(0);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

exit(0) 表示正常退出,代码为1

#include <stdio.h>
int main()
{
	printf("exit(0):代码为0,退出程序\n");
	exit(0);
	printf("It's OK\n");
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

exit(1) 表示异常退出,代码为1

#include <stdio.h>
int main()
{
	printf("exit(1):代码为1,退出程序\n");
	exit(1);
	printf("It's OK\n");
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/108170
推荐阅读
相关标签
  

闽ICP备14008679号