getc

getc

函式名: getc 功 能:從流中取字元 用 法: int getc(FILE *stream); //read the next character from stream and return it as an unsigned char cast to a int ,or EOF on end of file or error. 從檔案指針stream指向的檔案流中讀取一個字元,並把它作為函式值返回給整型變數ch; 如果讀取失敗或者到了檔案結束標誌返回EOF(-1)

功能

從流中取字元

用法

int getc(FILE *stream);//read the next character from stream and return it as an unsigned char cast to a int ,or EOF on end of file or error.

用法介紹:

在C語言中,用函式getc從檔案讀取字元。

用 法: int getc(FILE *stream);

從檔案指針stream指向的檔案流中讀取一個字元,並把它作為函式值返回給整型變數ch,並把位置標識符往前移動。

如果讀取失敗或者到了檔案結束標誌返回EOF(-1)

程式例一

把一個已存在磁碟上的file_a.dat文本檔案中的內容,原樣輸出到螢幕上

程式執行步驟:

①打開檔案

②從指定檔案中讀入一個字元

③判斷讀入的是否是檔案結束標誌,若是,結束循環,執行步驟⑦。

④把剛從檔案中讀入的字元輸出到終端螢幕。

⑤從檔案中再讀入一個字元。

⑥重複步驟③至⑤。

⑦正確關閉檔案。

程式例二

相關詞條

相關搜尋

熱門詞條

聯絡我們