描述
C库函数void exit(int status)立即终止调用进程。属于该进程的任何打开的文件描述符都将关闭,该进程的任何子进程都由进程 1 init 继承,并且进程父进程被发送一个 SIGCHLD 信号。
声明
以下是 exit() 函数的声明。
void exit(int status)
参数
status─ 这是返回给父进程的状态值。
返回值
此函数不返回任何值。
示例
下面的例子展示了 exit() 函数的用法。
#include <stdio.h>
#include <stdlib.h>
int main () {
printf("Start of the program....\n");
printf("Exiting the program....\n");
exit(0);
printf("End of the program....\n");
return(0);
}
让我们编译并运行上面的程序,它会产生以下结果——
Start of the program.... Exiting the program....
相关用法
- C语言 exp()用法及代码示例
- C语言 宏 assert()用法及代码示例
- C语言 vprintf()用法及代码示例
- C语言 宏 va_start()用法及代码示例
- C语言 setlocale()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 sinh()用法及代码示例
- C语言 宏 offsetof()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 scanf()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 getarcoords()用法及代码示例
- C语言 isdigit()用法及代码示例
- C语言 clock()用法及代码示例
- C语言 strcspn()用法及代码示例
- C语言 setlinestyle()用法及代码示例
- C语言 fmod()用法及代码示例
- C语言 showbits()用法及代码示例
- C语言 div()用法及代码示例
- C语言 outtextxy()用法及代码示例
注:本文由纯净天空筛选整理自 C library function - exit()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。