>即時新聞-熱門

2008年8月15日星期五

VC++ - 檔案處理

#include<iostream>
using namespace std;
void main()

FILE *file1;  
int i;
char str1[40]="大家好大家好我想知道";
char str2[20];
file1=fopen("mydata.txt","w"); 
i=fputs(str1,file1);
if (i != EOF) 
cout << "存檔成功" << endl;
else
cout << "檔案防寫無法儲存" << endl;

fclose(file1);
file1=fopen("mydata.txt","r"); 
if (file1 == NULL)

cout << "檔案不存在,無法開啟" << endl;
exit(1);

else

while (fgets(str2,11,file1) != NULL) // 10個字元(11-1)

cout << "檔案內容:" << str2 << endl;


fclose(file1);

0 评论:

 
妹咕數位學園歡迎網友們來信指教 妹咕信箱