C语言 <stdlib.h> exit 函数

  • 描述

    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....