- 浏览: 1542916 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (532)
- 软件设计师 (7)
- PSP (5)
- NET MD (9)
- Hibernate (8)
- DIY (51)
- Work (43)
- GAME (24)
- 未分类 (44)
- iPod (6)
- MySQL (39)
- JSP (7)
- 日语能力考试 (36)
- 小说 (4)
- 豆包网 (23)
- 家用电脑 (7)
- DB2 (36)
- C/C++ (18)
- baby (9)
- Linux (13)
- thinkpad (23)
- OA (1)
- UML (6)
- oracle (24)
- 系统集成 (27)
- 脑梗塞 (6)
- 车 (8)
- MainFrame (8)
- Windows 7 (13)
- 手机 (8)
- git (12)
- AHK (2)
- COBOL (2)
- Java (9)
最新评论
-
安静听歌:
... ...
UUID做主键,好还是不好?这是个问题。 -
lehehe:
http://www.haoservice.com/docs/ ...
天气预报 -
lehehe:
[url http://www.haoservice.com/ ...
天气预报 -
liubang201010:
监控TUXEDO 的软件推荐用这个,专业,权威.并能提供报警和 ...
(转载)Tuxedo中间件简介 -
tinkame:
Next[j] =-1 当j=0时;=Max{k|0<k ...
KMP字符串模式匹配详解
C语言库函数大全(字母a)---使用说明(转)
功 能: 异常终止一个进程
用 法: 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);
}
发表评论
-
(转)const参数,const返回值与const函数
2014-11-14 17:29 812原文地址:http://04 ... -
(转)在 Eclipse 中配置编译 Pro*C
2010-08-09 17:49 2033http://blog.csdn.net/gjl2004yn/ ... -
(转)Pro*C 程序概述
2010-06-30 10:24 1138http://blog.csdn.net/amandake ... -
(转)什么是Pro*C/C++
2010-06-30 10:22 2314http://blog.csdn.net/hwz119/a ... -
(转)oracle中pro*c的学习
2010-06-30 10:17 1486http://www.qqread.com/ora ... -
(转)gcc and g++编译器和gdb调试器
2010-02-23 15:09 1864http://d.download.csdn.net/d ... -
(转)GDB 命令详细解释
2010-02-23 15:05 1524http://blog.csdn.net/wei801004/ ... -
CC和gcc是一样的编译器吗?
2009-06-15 17:06 2826楼主anysisze(张)2006-07-20 21:4 ... -
gcc常用参数,备忘
2009-06-12 14:45 1477gcc常用参数,备忘收藏 1. 头文件象conio ... -
请教关于标准C中findfirst()函数的用法!谢谢
2009-06-03 17:45 5049http://www.9php.com/FAQ/cx ... -
用strtok()函数提取分隔符隔开的每个字符串
2009-05-22 14:45 4171http://www.cplusplus.com/refere ... -
printf格式控制符的完整格式
2009-03-25 10:39 3205printf格式控制符的完整格式(2006-2-17 14: ... -
iconv 转码编程简介
2009-03-24 17:39 4402glibc带了一套转码函数 ... -
iconv 的使用方法
2009-03-24 17:38 1477iconv 的使用方法 iconv---编码转换用法: ic ... -
(C语言)头文件实现的函数
2009-03-18 17:43 4450(C语言)头文件实现的函数 http://www.diy ... -
Converting Strings To/From Ints:atoi, itoa, sprint
2009-03-18 16:41 1413Converting Strings To/From Int ... -
在 console mode 中使用 C/C++ 编译器
2009-03-05 17:18 1173在 console mode 中使用 C/C++ 编译器 ...
相关推荐
《C语言库函数全集(A-Z)》是一个全面概述C语言标准库中各种函数的资源集合,由个人精心整理而成,以TXT...对于初学者而言,这份《C语言库函数全集(A-Z)》是一个宝贵的参考资料,可以逐步熟悉和掌握C语言的库函数使用。
C语言库函数是编程中非常基础且重要的组成部分,它们提供了许多预定义的函数,帮助开发者进行数据处理、字符串操作、数学计算等任务。本篇文章将详细介绍来自`ctype.h`库的一些字符检查函数以及数学函数。 首先,...
C语言库函数是C编程中的重要组成部分,它们提供了一系列预定义的功能,可以帮助程序员高效地完成各种任务。了解和熟练使用库函数是提升C语言编程能力的关键。以下是对C语言库函数的一些详细介绍: 1. 输入输出函数...
在C语言中,库函数是预定义的函数,程序员可以直接调用它们来执行特定的任务,无需自己编写实现。本篇文章将详细介绍C语言中ctype.h和math.h库的一些关键函数,这些函数对于处理字符和数学计算非常有用。 1. **...
"C语言库函数大全"文档集合了所有标准C库中的函数,按照字母顺序排列,便于开发者查找和使用。这篇内容将详细介绍C语言库函数的核心知识点,并对一些常用函数进行深入解析。 首先,C语言库函数主要分为以下几大类:...
本资源“Linux及C语言库函数精华大全”提供了丰富的学习材料,涵盖了Linux下的各种命令以及C语言的常用库函数,对初学者而言极其有价值。 一、Linux命令大全 Linux命令是操作系统交互的基础,它允许用户通过命令行...
这份资料由多个以字母顺序排列的文档组成,包括"函数大全(a开头).doc"、"函数大全(b开头).doc"、"函数大全(c开头).doc"、"函数大全(d开头).doc"和"函数大全(e开头).doc"等,每个文档分别针对以相应字母开头的函数...
C语言库函数手册是编程语言C语言的函数手册,提供了大量的函数库和使用方法。本手册涵盖了ctype.h、math.h、stdlib.h、string.h、float.h等多个函数库,涉及到字符分类、数学运算、随机数生成等多个方面。 1. 字符...
《C语言库函数大全》是一本详尽的资源,涵盖了C语言中广泛使用的标准库函数。这本书以字母顺序排列,方便读者快速查找所需函数。每个函数都有精心挑选的实例程序代码,帮助理解其功能和用法,使得学习和应用变得更加...
C语言库函数是C编程中不可或缺的一部分,它们提供了一系列预定义的功能,可以帮助程序员处理各种任务,如字符操作、数学计算、内存管理等。本篇文章将详细介绍C语言中的一些常用库函数,主要集中在`ctype.h`和`math....
这些函数按照字母顺序分类,便于程序员查找和使用。下面我们将详细探讨C语言库函数的主要分类及其重要功能。 1. **输入/输出(I/O)函数**: - `printf`:格式化输出,用于将数据按照指定格式输出到标准输出设备,...
C语言库函数手册 C语言库函数是C语言的核心组件之一,它提供了大量的函数库,为程序员提供了便捷的开发体验。今天,我们将对C语言库函数手册进行详细的解读,并对其进行分类和分析。 字符分类函数 C语言库函数...
C语言库函数是C编程中不可或缺的一部分,它们提供了一系列预定义的函数,帮助开发者执行各种操作,如字符串处理、数学运算、输入/输出等。在本文中,我们将深入探讨两个重要的函数库:ctype.h和math.h,以及其中的...
使用C语言库函数功能查询器,开发者可以避免花费大量时间在文档中翻找,提高编程效率,减少因误用函数导致的bug。同时,它也是学习C语言过程中不可或缺的辅助工具,帮助初学者更快地理解和掌握C语言的库函数。 总之...
C语言库函数大全是C程序员的重要参考资料,它涵盖了C语言标准库中众多的...这个“C语言库函数大全”文档集应该包含对这些函数的详细解释、使用示例以及注意事项,对于初学者和经验丰富的开发者来说都是宝贵的参考资料。
C语言库函数是C编程中不可或缺的一部分,它们提供了一系列预定义的函数,帮助开发者执行各种任务,如字符串处理、数学运算、输入/输出等。在本文中,我们将深入探讨几个重要的C语言库函数,主要集中在`ctype.h`和`...
下面将详细讨论C语言库函数的一些关键知识点。 1. **标准库函数**: - 标准输入/输出:`stdio.h`库包含了处理输入和输出的基本函数,如`printf()`用于输出,`scanf()`用于输入。 - 内存管理:`stdlib.h`库提供了...
C语言库函数速查手册.chm(按字母排列) 这六个是我找了好久才找到的,各有各的好处,前3个互补十分齐全,后三个作为前三个的补充 函数不用说 程序例子 优先级表 ASCII码表 转义字符 关键字大全及注释 预处理命令 ...