C庫函式 void exit(int status) 立即終止呼叫進程。任何開啟的檔案描述符屬於過程中被關閉,任何子進程繼承和之父進程1,初始化,傳送信號SIGCHLD。
以下是exit() 函式的宣告。
void exit(int status)
status -- 這是返回狀態值給父進程。
這個函式無返回值。
下面的例子演示了如何使用 exit() 函式。
#include <stdio.h> #include <stdlib.h> int main () { printf("Start of the program.... "); printf("Exiting the program.... "); exit(0); printf("End of the program.... "); return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果:
Start of the program.... Exiting the program....