函数大全(t开头).doc

函数大全(t开头).doc

ID:61433710

大小:26.50 KB

页数:10页

时间:2021-01-30

函数大全(t开头).doc_第1页
函数大全(t开头).doc_第2页
函数大全(t开头).doc_第3页
函数大全(t开头).doc_第4页
函数大全(t开头).doc_第5页
资源描述:

《函数大全(t开头).doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、函数大全(t开头)函数名: tan 功  能: 正切函数 用  法: double tan(double x); 程序例: #include  #include  int main(void) {    double result, x;    x = 0.5;    result = tan(x);    printf("The tan of %lf is %lf", x, result);    return 0; }       函数名: tanh 功  能: 双曲正切函数 用  法: double tanh(double x); 程序例: #

2、include  #include  int main(void) {    double result, x;    x = 0.5;    result = tanh(x);    printf("The hyperbolic tangent of %lf is %lf", x, result);    return 0; }         函数名: tell 功  能: 取文件指针的当前位置 用  法: long tell(int handle); 程序例: #include  #include  #in

3、clude  #include  int main(void) {    int handle;    char msg[] = "Hello world";    if ((handle = open("TEST.$$$", O_CREAT 

4、 O_TEXT 

5、 O_APPEND)) == -1)    {       perror("Error:");       return 1;    }    write(handle, msg, strlen(msg));    printf("The file pointer is at byte %ld"

6、, tell(handle));    close(handle);    return 0; }         函数名: textattr 功  能: 设置文本属性 用  法: void textattr(int attribute); 程序例: #include  int main(void) {    int i;    clrscr();    for (i=0; i<9; i++)    {        textattr(i + ((i+1) << 4));        cprintf("This is a testr");    }    ret

7、urn 0; }       函数名: textbackground 功  能: 选择新的文本背景颜色 用  法: void textbackground(int color); 程序例: #include  int main(void) {    int i, j;    clrscr();    for (i=0; i<9; i++)    {        for (j=0; j<80; j++)          cprintf("C");        cprintf("r");        textcolor(i+1);        textbac

8、kground(i);    }    return 0; }       函数名: textcolor 功  能: 在文本模式中选择新的字符颜色 用  法: void textcolor(int color); 程序例: #include  int main(void) {    int i;    for (i=0; i<15; i++)    {        textcolor(i);        cprintf("Foreground Colorr");    }    return 0; }       函数名: textheight 功  能: 返

9、回以像素为单位的字符串高度 用  法: int far textheight(char far *textstring); 程序例: #include  #include  #include  #include  int main(void) {    /* request auto detection */    int gdriver = DETEC

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。