C 語言標準函數庫分類導覽 - stdio.h fflush()

stdio.h 的函數 fflush() 強制將緩衝區的輸出串流寫到檔案中。



以下程式示範輸入字元後,便用函數 fflush() 強制寫入檔案中
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    FILE *fPtr;
    char c;
    
    fPtr = fopen("oldname.txt", "w");
    if (!fPtr) {
        printf("檔案建立失敗...\n");
        exit(1);
    }
    
    while ((c = getchar()) != EOF) {
        fputc(c, fPtr);
        fflush(fPtr);
    }
    
    fclose(fPtr);
    
    return 0;
}


/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:cfflush.c
    功能:示範 stdio.h 中函數 fflush() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: