标签:style blog http color io os ar strong sp
函数名: abort
功 能: 异常终止一个进程
用 法: void abort(void);
程序例:
#include <stdio.h> #include <stdlib.h> int main(void) { printf("Calling abort()\n"); abort(); return 0; /* This is never reached */ }
书画小说软件 更惬意的读、更舒心的写、更轻松的发布。
标签:style blog http color io os ar strong sp
原文地址:http://www.cnblogs.com/shuilan0066/p/4030533.html