資源簡介
函數名: 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入門及
評論
共有 條評論