描述
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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。