资源简介
函数名: abort
功 能: 异常终止一个进程
用 法: void abort(void);
程序例:
#include
#include
int main(void)
{
printf("Calling abort()\n");
abort();
return 0; /* This is never reached */
}
函数名: abs
功 能: 求整数的绝对值
用 法: int abs(int i);
程序例:
#include
#include
int m
代码片段和文件信息
- 上一篇:C语言版本Linux环境下MD5加密函数
- 下一篇:LIBKML入门及
评论
共有 条评论