C语言函数库#函数名:abort功能:异常终止一个进程用法:voidabort(void);程序例:#include#includeintmain(void){printf("Callingabort()\n");abort();return0;/*Thisisneverreached*/}