[ 发表日期:2002-1-4 9:28:46 ]
函数名: abort
功 能: 异常终止一个进程
用 法: void abort(void);
程序例:
#include stdio.h
#include stdlib.h
int main(void)
{
printf("Calling abort()");
abort();
return 0; /* This is never reached */
} 函数名: abs
功 能: 求整数的绝对值
用 法: int abs(int i);
程序例:
#include stdio.h
#include math.h int main(void)
{
int number = -1234; printf("number: %d absolute value: %d", number, abs(number));
return 0;
} 函数名: absread, abswi...[ 查看全文 ]