c語言函式 T

2021-06-26 10:50:07 字數 3549 閱讀 5399

本文由 書畫**軟體 整理發布 內容與本軟體無關更愜意的讀、更舒心的寫、更輕鬆的發布

最全古典**網 由本軟體發布所得

函式名: tan

功 能: 正切函式

用 法: double tan(double x);

程式例:

#include 

#include

intmain

(void

)

函式名: tanh

功 能: 雙曲正切函式

用 法: double tanh(double x);

程式例:

#include 

#include

intmain

(void

)

函式名: tell

功 能: 取檔案指標的當前位置

用 法: long tell(int handle);

程式例:

#include 

#include

#include

#include

intmain

(void

)write

(handle, msg, strlen(msg)

);    printf

("the file pointer is at byte %ld\n", tell

(handle)

);    close

(handle);

return

0; }

函式名: textattr

功 能: 設定文字屬性

用 法: void textattr(int attribute);

程式例:

#include 

intmain

(void

)return

0; }

函式名: textbackground

功 能: 選擇新的文字背景顏色

用 法: void textbackground(int color);

程式例:

#include 

intmain

(void

)return

0; }

函式名: textcolor

功 能: 在文字模式中選擇新的字元顏色

用 法: void textcolor(int color);

程式例:

#include 

intmain

(void

)return

0; }

函式名: textheight

功 能: 返回以畫素為單位的字串高度

用 法: int far textheight(char far *textstring);

程式例:

#include 

#include

#include

#include

intmain

(void) 

/* draw some text on the screen */

for(i=1; i<11; i++)

/* clean up */

getch

();

closegraph(

);    return

0; }

函式名: textmode

功 能: 將螢幕設定成文字模式

用 法: void textmode(int mode);

程式例:

#include 

intmain

(void

)

函式名: textwidth

功 能: 返回以畫素為單位的字串寬度

用 法: int far textwidth(char far *textstring);

程式例:

#include 

#include

#include

#include

intmain

(void)y

= getmaxy(

) / 2;

settextjustify(left_text, center_text);

for(i=1; i<11; i++)

/* clean up */

getch

();

closegraph(

);    return

0; }

函式名: time

功 能: 取一天的時間

用 法: logn time(long *tloc);

程式例:

#include 

#include

#include

intmain

(void

)

函式名: tmpfile

功 能: 以二進位制方式開啟暫存檔案

用 法: file *tmpfile(void);

程式例:

#include 

#include

intmain

(void

)return

0; }

函式名: tmpnam

功 能: 建立乙個唯一的檔名

用 法: char *tmpnam(char *sptr);

程式例:

#include 

intmain

(void

)

函式名: tolower

功 能: 把字元轉換成小寫字母

用 法: int tolower(int c);

程式例:

#include 

#include

#include

intmain

(void

)printf

("%s\n",string

);    return

0; }

函式名: toupper

功 能: 把字元轉換成大寫字母

用 法: int toupper(int c);

程式例:

#include 

#include

#include

intmain

(void

)printf

("%s\n",string

);    return

0; }

函式名: tzset

功 能: unix時間相容函式

用 法: void tzset(void);

程式例:

#include 

#include

#include

intmain

(void

)

書畫**軟體 製作更愜意的讀、更舒心的寫、更輕鬆的發布

最全古典**網 由本軟體發布所得

C語言庫函式 T類字母

函式名 tan 功 能 正切函式 用 法 double tan double x 程式例 include include int main void 函式名 tanh 功 能 雙曲正切函式 用 法 double tanh double x 程式例 include include int main v...

c 語言中 T含義

1.t hello 是乙個巨集,作用是讓程式支援unicode編碼。2.windows使用兩種字符集ansi和unicode,前者使用的單位元組格式,後者使用雙位元組格式。3.簡單一點講 t hello world 表示 在ansi的環境下,它是ansi的 在unicode下,那麼它將自動解釋為雙位...

C 中的 T 函式

在今天寫乙個mfc程式的時候發現了 t 這個函式,經過在網上查閱學習發現vc支援ascii和unicode兩種字元型別,用 t可以保證從ascii編碼型別轉換到unicode編碼型別的時候,程式不需要修改 以下是今天學到的知識 他的作用是讓你的程式支援unicode編碼,因為windows使用兩種字...