欢迎来到天天文库
浏览记录
ID:61433710
大小:26.50 KB
页数:10页
时间:2021-01-30
《函数大全(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
此文档下载收益归作者所有