[C/C++基礎] 檔案讀寫防呆標準判斷函數(ferror)使用範例
[C/C++基礎] 檔案讀寫防呆標準判斷函數(ferror)使用範例
資料來源: http://www.cplusplus.com/reference/cstdio/ferror/
/* #include int { FILE * pFile; pFile=fopen(“myfile.txt”,“r”); if (pFile==NULL) perror (“Error else { fputc (‘x’,pFile); if (ferror (pFile)) printf (“Error Writing to fclose (pFile); } return 0; } |