功能名称: abort

动力 能够: 异常终止的过程的

使用 法国: void abort(void);

程序示例:

#include <stdio.h>
#include <stdlib.h>
int main(void)
{ printf("Calling abort()\n"); 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\n", 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 <stdio.h>
#include <conio.h>
#include <process.h>
#include <dos.h>
int main(void)
{ int i, strt, ch_out, sector; char buf[512]; printf("Insert a diskette into drive A and press any key\n"); getch(); sector = 0; if (absread(0, 1, sector, &buf) != 0) { perror("Disk problem"); exit(1); } printf("Read OK\n"); strt = 3; for (i=0; i<80; i++) { ch_out = buf[strt+i]; putchar(ch_out); } printf("\n"); return(0);
} 

函数名: access

功 能: 确定文件的訪问权限

用 法: int access(const char *filename, int amode);

程序例:

#include <stdio.h>
#include <io.h>
int file_exists(char *filename);
int main(void)
{ printf("Does NOTEXIST.FIL exist: %s\n", file_exists("NOTEXISTS.FIL") ? "YES" : "NO"); return 0;
}
int file_exists(char *filename)
{ return (access(filename, 0) == 0);
} 

函数名: acos

功 能: 反余弦函数

用 法: double acos(double x);

程序例:

#include <stdio.h>
#include <math.h>
int main(void)
{ double result; double x = 0.5; result = acos(x); printf("The arc cosine of %lf is %lf\n", x, result); return 0;
} 

函数名: allocmem

功 能: 分配DOS存储段

用 法: int allocmem(unsigned size, unsigned *seg);

程序例:

#include <dos.h>
#include <alloc.h>
#include <stdio.h>
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\n", segp); else printf("Failed: maximum number of paragraphs available is %u\n", stat); return 0;
} 

函数名: arc

功 能: 画一弧线

用 法: void far arc(int x, int y, int stangle, int endangle, int radius);

程序例:

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
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\n", 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 <stdio.h>
#include <string.h>
#include <time.h>
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\n", str); return 0;
} 

函数名: asin

功 能: 反正弦函数

用 法: double asin(double x);

程序例:

#include <stdio.h>
#include <math.h>
int main(void)
{ double result; double x = 0.5; result = asin(x); printf("The arc sin of %lf is %lf\n", x, result); return(0);
} 

函数名: assert

功 能: 測试一个条件并可能使程序终止

用 法: void assert(int test);

程序例:

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
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 <stdio.h>
#include <math.h>
int main(void)
{ double result; double x = 0.5; result = atan(x); printf("The arc tangent of %lf is %lf\n", x, result); return(0);
} 

函数名: atan2

功 能: 计算Y/X的反正切值

用 法: double atan2(double y, double x);

程序例:

#include <stdio.h>
#include <math.h>
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\n", (y / x), result); return 0;
} 

函数名: atexit

功 能: 注冊终止函数

用 法: int atexit(atexit_t func);

程序例:

#include <stdio.h>
#include <stdlib.h>
void exit_fn1(void)
{ printf("Exit function #1 called\n");
}
void exit_fn2(void)
{ printf("Exit function #2 called\n");
}
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 <stdlib.h>
#include <stdio.h>
int main(void)
{ float f; char *str = "12345.67"; f = atof(str); printf("string = %s float = %f\n", str, f); return 0;
} 

函数名: atoi

功 能: 把字符串转换成长整型数

用 法: int atoi(const char *nptr);

程序例:

#include <stdlib.h>
#include <stdio.h>
int main(void)
{ int n; char *str = "12345.67"; n = atoi(str); printf("string = %s integer = %d\n", str, n); return 0;
} 

函数名: atol

功 能: 把字符串转换成长整型数

用 法: long atol(const char *nptr);

程序例:

#include <stdlib.h>
#include <stdio.h>
int main(void)
{ long l; char *str = "98765432"; l = atol(lstr); printf("string = %s integer = %ld\n", str, l); return(0);
} 

由 书法新软件 整理 阅读更满意、更舒适的书写、出版更容易

转载于:https://www.cnblogs.com/gcczhongduan/p/4740390.html

此C语言功能---A相关推荐

  1. 各种编程语言功能综合简要介绍(C,C++,JAVA,PHP,PYTHON,易语言)

    各种编程语言功能综合简要介绍(C,C++,JAVA,PHP,PYTHON,易语言) 总结 a.一个语言或者一个东西能火是和这种语言进入某一子行业的契机有关.也就是说这个语言有没有解决社会急需的问题. ...

  2. Elixir 1.3带来新的语言功能、API和改进后的工具

    José Valim最近宣布Elixir 1.3中弃用了必要赋值,添加了一些新的类型和存取器,提升了其Mix搭建工具和ExUnit单元测试框架. \\ Elixir 1.3弃用了对需要在外部作用域进行 ...

  3. LINQ之路 2:C# 3.0的语言功能(上)

    在上一篇的LINQ介绍中,我们已经看到了隐式类型变量var,扩展方法(extension method)和lambda表达式的身影.没错,他们正是LINQ技术的基石,是他们让LINQ的实现成为可能,并 ...

  4. jdk8切换成jdk6_运行中的JDK语言功能预览:切换表达式

    jdk8切换成jdk6 JEP 12 ["预览语言和VM功能"]在其主页上描述如下: 预览语言或VM功能是Java SE平台的一项新功能,该功能已完全指定,完全实现但不是永久性的. ...

  5. nutshell_Nutshell中的Java 8语言功能-第1部分

    nutshell 你好朋友, Java 8发布已经很长时间了,现在越来越多地被使用. 在本文中,我们将讨论以下Java 8主题. 1.功能接口 2.Lambda表达式 3.默认方法 1.功能界面 什么 ...

  6. nutshell_Nutshell中的Java 8语言功能-第2部分

    nutshell 编者注:您也可以在此处检查Part-1. 嗨,朋友,这是简明系列的Java 8语言功能的第2部分. 在这里,我们将讨论Java 8的以下功能: 接口中的静态方法 流 1.接口中的静态 ...

  7. 微信小程序css 华文琥珀_琥珀项目:较小的,面向生产力的Java语言功能

    微信小程序css 华文琥珀 Brian Goetz最近的消息欢迎来到琥珀! 介绍Project Amber ( OpenJDK的一部分, 最初于1月提出 ). Goetz通过介绍"欢迎使用A ...

  8. Nutshell中的Java 8语言功能-第2部分

    编者注:您也可以在此处检查Part-1. 嗨,朋友们,这是简明系列的Java 8语言功能的第2部分. 在这里,我们将讨论Java 8的以下功能: 接口中的静态方法 流 1.接口中的静态方法 什么是静态 ...

  9. JDK语言功能预览:切换表达式

    JEP 12 ["预览语言和VM功能"]在其主页上描述如下: 预览语言或VM功能是Java SE平台的一项新功能,该功能已完全指定,完全实现但不是永久性的. JDK功能发布中提供了 ...

  10. Nutshell中的Java 8语言功能-第1部分

    你好朋友, Java 8发布已经很长时间了,现在越来越多地被使用. 在本文中,我们将讨论以下Java 8主题. 1.功能接口 2,Lambda表达式 3.默认方法 1.功能界面 什么是功能接口? 与一 ...

最新文章

  1. ecshop目录结构
  2. 安装惠普笔记本XP三种方法
  3. vue动态设置文字布局方式_详解Vue动态添加模板的几种方法
  4. WSAStartup()函数以及DLL的加载
  5. Ospf在广播网络中建立邻居关系的详细过程
  6. 《Hadoop实战》的笔记-2、Hadoop输入与输出
  7. C语言程序设计第一次实验
  8. 软考中级 真题 2018年下半年 系统集成项目管理工程师 基础知识 上午试卷
  9. 打印机不打印计算机原因,打印机打印不完整?是这10个原因造成的!打印必备...
  10. 论文阅读:U-Net++: Redesigning Skip Connections to Exploit Multiscale Features in Image Segmentation
  11. SAR成像系列:【3】合成孔径雷达(SAR)的二维回波信号与简单距离多普勒(RD)算法 (附matlab代码)
  12. 如何删除Mac OS Monterey自带(预装)软件?
  13. 163邮箱接口post登录战网(一)
  14. 石头剪刀布Java实现
  15. JAVA String时间转化为数据库Date类型
  16. js json对象转数组获取key与长度
  17. Skipping MapperFactoryBean with name ‘xxxMapper‘ and ‘xxx.xxx.xxx.mapper.xxxxxMapper‘ nterface. Bean
  18. 日常起居六忌是什么?
  19. 媒体笔记第1篇:“四全媒体”释义
  20. 宝塔推出nginx免费防火墙插件!!!

热门文章

  1. ”三不跳“ - 再说跳槽
  2. 百度大牛总结的十条Python面试题
  3. C# 开发和使用中的32个技巧
  4. SpringBoot+Nacos+Seata实现Dubbo分布式事务管理
  5. 挂载本地目录到Virtualbox并解决[mounting failed with the error: Protocol error]错误
  6. redis启动以及开机自启动
  7. Python 之 高级变量类型
  8. python matplot模块
  9. Pytorch专题实战——数据转换(Dataset Transforms)
  10. LeetCode 53.最大子序和(动态规划)