标准 C 函数参考 txt 格式

时间:2012-09-22 04:46:01
【文件属性】:

文件名称:标准 C 函数参考 txt 格式

文件大小:4KB

文件格式:7Z

更新时间:2012-09-22 04:46:01

C 语言 标准 函数

格式.txt,方便编辑,打印 排版格式为: abs ---------- 原型:extern int abs(int x); 用法:#include 功能:求整数x的绝对值 说明:计算|x|, 当x不为负时返回x,否则返回-x 举例: #include #include int main() { ...... int x; x=-5; printf("|%d|=%d\n",x,abs(x)); x=0; printf("|%d|=%d\n",x,abs(x)); x=+5; printf("|%d|=%d\n",x,abs(x)); return 0; } acos ---------- 原型:extern float acos(float x); 用法:#include 功能:求x(弧度表示)的反余弦值 说明:x的定义域为[-1.0,1.0],值域为[0,π]。 举例: #include #include int main() { float x; textmode(0x00); // 6 lines per LCD screen x=0.32; printf("acos(%.2f)=%.4f",x,acos(x)); return 0; } 有空多去去 http://meooo.download.csdn.net/ 也许有你喜欢东西和书籍......


【文件预览】:
stdlib.txt
stdio.txt
math.txt
ctype.txt

网友评论

  • 不要下载,浪费积分,就只有几个函数而已。