程式語言教學誌: C 語言標準函數庫分類導覽 - 檔案處理 stdio.h

程式語言教學誌: C 語言標準函數庫分類導覽 - 檔案處理 stdio.h

瀏覽:1086
日期:2025-04-28
函數名稱 功能 函數原型 fgetc 從檔案中取得字元 int fgetc(FILE *stream); fgets 從檔案中取得單行字串 char *fgets(char *s, int n, FILE *stream); fputc 把字元放到檔案中 int fputc(const char *s, FILE *stream); fputs 把字串放到檔案中 int fputs(const char *s, FILE ......看更多