刘华世的官方博客
摘要: /*函数名: abort功 能: 异常终止一个进程用 法: void abort(void);程序例:*/#include <stdio.h>#include <stdlib.h>int main(void){ printf("Calling abort()\n"); abort(); return 0; /* This is never reached */}/*函数名: abs功 能: 求整数的绝对值用 法: int abs(int i);程序例:*/#include <stdio.h>#include <math.h>i 阅读全文
posted @ 2013-01-07 17:07 pythonschool 阅读(382) 评论(0) 推荐(0) 编辑
刘华世的官方博客