C 速查手冊
11.4.11 abort()
stdlib.h 的函數 (function) abort() 使程式不正常的結束。
以下程式示範使用 abort() 的結果
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
printf("程式將會以不正常方式結束...\n");
abort();
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cabort.c
功能:示範 stdlib.h 中函數 abort() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cabort.c |
$ a.out |
程式將會以不正常方式結束... |
Abort trap: 6 |
$ |