C語言中的abort函式

鍾超發表於2010-05-20

/* name : abort function : 異常終止一個程式 declare : void abort(void); include :#include <stdlib.h> explanation:abort函式是一個比較嚴重的函式,當呼叫它時,會導致程式異常終止,而不會進行一些常規的清除工作,比如釋放記憶體等。 */ //example: #include <stdio.h> #include <stdlib.h> int main(void) { puts( "About to abort..../n" ); abort(); puts( "This will never be executed!/n" ); exit( EXIT_SUCCESS ); } /* result: [root@localhost error_process]# gcc abort.c [root@localhost error_process]# ./a.out About to abort.... */

相關文章