abort()函数写一个终止信息到stderr,并异常终止程序。
abort()函数 语法
void abort(void);
abort()函数没有参数。
abort()函数没有返回值。
abort()函数 示例
本示例使用abort函数异常终止一个进程,并输出信息”Abnormal program termination”。其具体代码如下所示:
#include<stdio.h>
#include<stdlib.h>
int main()
{
printf("Calling abort() ");/*输出提示信息*/
abort();/*终止程序*/
printf("It is noneffective ");/*此行将不执行*/
return 0;
}
运行结果如图所示。