fclose() - C庫函式


C庫函式int fclose(FILE *stream)關閉該流。所有的緩衝區被重新整理。  

宣告

以下是宣告fclose()函式。

int fclose(FILE *stream)

引數

  • stream -- 這是一個檔案物件的指標指定的資料流被關閉。

返回值

此方法返回0,如果流成功關閉。如果失敗,返回EOF。

例子

下面的例子演示了如何使用fclose()函式。

#include <stdio.h>

int main()
{
   FILE *fp;
 
   fp = fopen("file.txt", "w");

   fprintf(fp, "%s", "This is tw511.com");
   fclose(fp);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將建立一個檔案file.txt的,第二個會寫下面的文字行,最後它會使用 fclose()函式關閉檔案。 

This is tw511.com