`

C语言库函数大全(字母a)---使用说明(转)

阅读更多

C语言库函数大全(字母a)---使用说明(转)


函数名: abort  
功 能: 异常终止一个进程  
用 法: void abort(void);  
程序例:  
#include  
#include  
int main(void)  
{  
printf("Calling abort() 
");  
abort();  
return 0; /* This is never reached */  
}  
 
 
 
函数名: abs  
功 能: 求整数的绝对值  
用 法: int abs(int i);  
程序例:  
#include  
#include  
 
int main(void)  
{  
int number = -1234;  
 
printf("number: %d absolute value: %d 
", number, abs(number));  
return 0;  
}  
 
 
 
函数名: absread, abswirte  
功 能: 绝对磁盘扇区读、写数据  
用 法: int absread(int drive, int nsects, int sectno, void *buffer);  
int abswrite(int drive, int nsects, in tsectno, void *buffer);  
程序例:  
/* absread example */  
 
#include  
#include  
#include  
#include  
 
int main(void)  
{  
int i, strt, ch_out, sector;  
char buf[512];  
 
printf("Insert a diskette into drive A and press any key 
");  
getch();  
sector = 0;  
if (absread(0, 1, sector, &buf) != 0)  
{  
perror("Disk problem");  
exit(1);  
}  
printf("Read OK 
");  
strt = 3;  
for (i=0; i<80; i++)  
{  
ch_out = buf[strt+i];  
putchar(ch_out);  
}  
printf(" 
");  
return(0);  
}  
 
 
 
 
函数名: access  
功 能: 确定文件的访问权限  
用 法: int access(const char *filename, int amode);  
程序例:  
#include  
#include  
 
int file_exists(char *filename);  
 
int main(void)  
{  
printf("Does NOTEXIST.FIL exist: %s 
",  
file_exists("NOTEXISTS.FIL") ? "YES" : "NO");  
return 0;  
}  
 
int file_exists(char *filename)  
{  
return (access(filename, 0) == 0);  
}  
 
 
函数名: acos  
功 能: 反余弦函数  
用 法: double acos(double x);  
程序例:  
#include  
#include  
 
int main(void)  
{  
double result;  
double x = 0.5;  
 
result = acos(x);  
printf("The arc cosine of %lf is %lf 
", x, result);  
return 0;  
}  
 
 
 
函数名: allocmem  
功 能: 分配DOS存储段  
用 法: int allocmem(unsigned size, unsigned *seg);  
程序例:  
#include  
#include  
#include  
 
int main(void)  
{  
unsigned int size, segp;  
int stat;  
 
size = 64; /* (64 x 16) = 1024 bytes */  
stat = allocmem(size, &segp);  
if (stat == -1)  
printf("Allocated memory at segment: %x 
", segp);  
else  
printf("Failed: maximum number of paragraphs available is %u 
",  
stat);  
 
return 0;  
}  
 
 
 
函数名: arc  
功 能: 画一弧线  
用 法: void far arc(int x, int y, int stangle, int endangle, int radius);  
程序例:  
#include  
#include  
#include  
#include  
 
int main(void)  
{  
/* request auto detection */  
int gdriver = DETECT, gmode, errorcode;  
int midx, midy;  
int stangle = 45, endangle = 135;  
int radius = 100;  
 
/* initialize graphics and local variables */  
initgraph(&gdriver, &gmode, "");  
 
/* read result of initialization */  
errorcode = graphresult(); /* an error occurred */  
if (errorcode != grOk)  
{  
printf("Graphics error: %s 
", grapherrormsg(errorcode));  
printf("Press any key to halt:");  
getch();  
 
exit(1); /* terminate with an error code */  
}  
 
midx = getmaxx() / 2;  
midy = getmaxy() / 2;  
setcolor(getmaxcolor());  
 
/* draw arc */  
arc(midx, midy, stangle, endangle, radius);  
 
/* clean up */  
getch();  
closegraph();  
return 0;  
}  
 
 
 
函数名: asctime  
功 能: 转换日期和时间为ASCII码  
用 法: char *asctime(const struct tm *tblock);  
程序例:  
#include  
#include  
#include  
 
int main(void)  
{  
struct tm t;  
char str[80];  
 
/* sample loading of tm structure */  
 
t.tm_sec = 1; /* Seconds */  
t.tm_min = 30; /* Minutes */  
t.tm_hour = 9; /* Hour */  
t.tm_mday = 22; /* Day of the Month */  
t.tm_mon = 11; /* Month */  
t.tm_year = 56; /* Year - does not include century */  
t.tm_wday = 4; /* Day of the week */  
t.tm_yday = 0; /* Does not show in asctime */  
t.tm_isdst = 0; /* Is Daylight SavTime; does not show in asctime */  
 
/* converts structure to null terminated  
string */  
 
strcpy(str, asctime(&t));  
printf("%s 
", str);  
 
return 0;  
}  
 
 
 
 
函数名: asin  
功 能: 反正弦函数  
用 法: double asin(double x);  
程序例:  
#include  
#include  
 
int main(void)  
{  
double result;  
double x = 0.5;  
 
result = asin(x);  
printf("The arc sin of %lf is %lf 
", x, result);  
return(0);  
}  
 
 
 
 
函数名: assert  
功 能: 测试一个条件并可能使程序终止  
用 法: void assert(int test);  
程序例:  
#include  
#include  
#include  
 
struct ITEM {  
int key;  
int value;  
};  
 
/* add item to list, make sure list is not null */  
void additem(struct ITEM *itemptr) {  
assert(itemptr != NULL);  
/* add item to list */  
}  
 
int main(void)  
{  
additem(NULL);  
return 0;  
}  
 
 
 
 
函数名: atan  
功 能: 反正切函数  
用 法: double atan(double x);  
程序例:  
#include  
#include  
 
int main(void)  
{  
double result;  
double x = 0.5;  
 
result = atan(x);  
printf("The arc tangent of %lf is %lf 
", x, result);  
return(0);  
}  
 
 
 
函数名: atan2  
功 能: 计算Y/X的反正切值  
用 法: double atan2(double y, double x);  
程序例:  
#include  
#include  
 
int main(void)  
{  
double result;  
double x = 90.0, y = 45.0;  
 
result = atan2(y, x);  
printf("The arc tangent ratio of %lf is %lf 
", (y / x), result);  
return 0;  
}  
 
 
 
函数名: atexit  
功 能: 注册终止函数  
用 法: int atexit(atexit_t func);  
程序例:  
#include  
#include  
 
void exit_fn1(void)  
{  
printf("Exit function #1 called 
");  
}  
 
void exit_fn2(void)  
{  
printf("Exit function #2 called 
");  
}  
 
int main(void)  
{  
/* post exit function #1 */  
atexit(exit_fn1);  
/* post exit function #2 */  
atexit(exit_fn2);  
return 0;  
}  
 
 
函数名: atof  
功 能: 把字符串转换成浮点数  
用 法: double atof(const char *nptr);  
程序例:  
#include  
#include  
 
int main(void)  
{  
float f;  
char *str = "12345.67";  
 
f = atof(str);  
printf("string = %s float = %f 
", str, f);  
return 0;  
}  
 
 
 
函数名: atoi  
功 能: 把字符串转换成长整型数  
用 法: int atoi(const char *nptr);  
程序例:  
#include  
#include  
 
int main(void)  
{  
int n;  
char *str = "12345.67";  
 
n = atoi(str);  
printf("string = %s integer = %d 
", str, n);  
return 0;  
}  
 
 
 
函数名: atol  
功 能: 把字符串转换成长整型数  
用 法: long atol(const char *nptr);  
程序例:  
 
#include  
#include  
 
int main(void)  
{  
long l;  
char *str = "98765432";  
 
l = atol(lstr);  
printf("string = %s integer = %ld 
", str, l);  
return(0);  
}

分享到:
评论

相关推荐

    C语言库函数全集(A-Z)

    《C语言库函数全集(A-Z)》是一个全面概述C语言标准库中各种函数的资源集合,由个人精心整理而成,以TXT...对于初学者而言,这份《C语言库函数全集(A-Z)》是一个宝贵的参考资料,可以逐步熟悉和掌握C语言的库函数使用。

    c语言库函数大全--资料收集

    C语言库函数是编程中非常基础且重要的组成部分,它们提供了许多预定义的函数,帮助开发者进行数据处理、字符串操作、数学计算等任务。本篇文章将详细介绍来自`ctype.h`库的一些字符检查函数以及数学函数。 首先,...

    C语言库函数速查---

    C语言库函数是C编程中的重要组成部分,它们提供了一系列预定义的功能,可以帮助程序员高效地完成各种任务。了解和熟练使用库函数是提升C语言编程能力的关键。以下是对C语言库函数的一些详细介绍: 1. 输入输出函数...

    C语言库函数大全.doc

    在C语言中,库函数是预定义的函数,程序员可以直接调用它们来执行特定的任务,无需自己编写实现。本篇文章将详细介绍C语言中ctype.h和math.h库的一些关键函数,这些函数对于处理字符和数学计算非常有用。 1. **...

    C语言库函数大全,C语言函数库下载

    "C语言库函数大全"文档集合了所有标准C库中的函数,按照字母顺序排列,便于开发者查找和使用。这篇内容将详细介绍C语言库函数的核心知识点,并对一些常用函数进行深入解析。 首先,C语言库函数主要分为以下几大类:...

    linux及c语言库函数精华大全

    本资源“Linux及C语言库函数精华大全”提供了丰富的学习材料,涵盖了Linux下的各种命令以及C语言的常用库函数,对初学者而言极其有价值。 一、Linux命令大全 Linux命令是操作系统交互的基础,它允许用户通过命令行...

    c语言库函数大全.rar(Word版本)

    这份资料由多个以字母顺序排列的文档组成,包括"函数大全(a开头).doc"、"函数大全(b开头).doc"、"函数大全(c开头).doc"、"函数大全(d开头).doc"和"函数大全(e开头).doc"等,每个文档分别针对以相应字母开头的函数...

    C语言库函数手册(20210926024352).pdf

    C语言库函数手册是编程语言C语言的函数手册,提供了大量的函数库和使用方法。本手册涵盖了ctype.h、math.h、stdlib.h、string.h、float.h等多个函数库,涉及到字符分类、数学运算、随机数生成等多个方面。 1. 字符...

    C语言库函数大全(word文档格式电子书)

    《C语言库函数大全》是一本详尽的资源,涵盖了C语言中广泛使用的标准库函数。这本书以字母顺序排列,方便读者快速查找所需函数。每个函数都有精心挑选的实例程序代码,帮助理解其功能和用法,使得学习和应用变得更加...

    C语言库函数大全文档

    C语言库函数是C编程中不可或缺的一部分,它们提供了一系列预定义的功能,可以帮助程序员处理各种任务,如字符操作、数学计算、内存管理等。本篇文章将详细介绍C语言中的一些常用库函数,主要集中在`ctype.h`和`math....

    C语言库函数 按字母分类

    这些函数按照字母顺序分类,便于程序员查找和使用。下面我们将详细探讨C语言库函数的主要分类及其重要功能。 1. **输入/输出(I/O)函数**: - `printf`:格式化输出,用于将数据按照指定格式输出到标准输出设备,...

    C语言库函数手册.pdf

    C语言库函数手册 C语言库函数是C语言的核心组件之一,它提供了大量的函数库,为程序员提供了便捷的开发体验。今天,我们将对C语言库函数手册进行详细的解读,并对其进行分类和分析。 字符分类函数 C语言库函数...

    C库函数大全-----几乎包括了所有的C库函数,非常实用的资料哦!

    C语言库函数是C编程中不可或缺的一部分,它们提供了一系列预定义的函数,帮助开发者执行各种操作,如字符串处理、数学运算、输入/输出等。在本文中,我们将深入探讨两个重要的函数库:ctype.h和math.h,以及其中的...

    C语言库函数功能查询器.rar

    使用C语言库函数功能查询器,开发者可以避免花费大量时间在文档中翻找,提高编程效率,减少因误用函数导致的bug。同时,它也是学习C语言过程中不可或缺的辅助工具,帮助初学者更快地理解和掌握C语言的库函数。 总之...

    c语言库函数大全.rar

    C语言库函数大全是C程序员的重要参考资料,它涵盖了C语言标准库中众多的...这个“C语言库函数大全”文档集应该包含对这些函数的详细解释、使用示例以及注意事项,对于初学者和经验丰富的开发者来说都是宝贵的参考资料。

    C语言库函数参考手册

    C语言库函数是C编程中不可或缺的一部分,它们提供了一系列预定义的函数,帮助开发者执行各种任务,如字符串处理、数学运算、输入/输出等。在本文中,我们将深入探讨几个重要的C语言库函数,主要集中在`ctype.h`和`...

    c语言库函数。。。。。。

    下面将详细讨论C语言库函数的一些关键知识点。 1. **标准库函数**: - 标准输入/输出:`stdio.h`库包含了处理输入和输出的基本函数,如`printf()`用于输出,`scanf()`用于输入。 - 内存管理:`stdlib.h`库提供了...

    C语言库函数查询手册.chm

    C语言库函数速查手册.chm(按字母排列) 这六个是我找了好久才找到的,各有各的好处,前3个互补十分齐全,后三个作为前三个的补充 函数不用说 程序例子 优先级表 ASCII码表 转义字符 关键字大全及注释 预处理命令 ...

Global site tag (gtag.js) - Google Analytics