#include<iostream>
using namespace std;
void main()
{
FILE *file1;
int i,j;
char ch1;
char myst[50],st2[50];
cout<<"請輸入";
cin>>myst;
file1=fopen("mydata.txt","w");
for(i=0;myst[i] != '¥0';i++)
putc(myst[i],file1);
cout << "存檔成功" << endl;
fclose(file1);
file1=fopen("mydata.txt","r");
cout << "檔案內容:";
i=0;
while ( (ch1=getc(file1)) != EOF)
{
st2[i]=ch1;
i++;
}
for(j=0;j<i;j++)
cout << st2[j] ;
cout << endl;
fclose(file1);
}
>即時新聞-熱門
2008年8月15日星期五
VC++ - 寫入檔案
发帖者 ALEX 时间: 01:08
标签: VISUAL C++
订阅:
博文评论 (Atom)
0 评论:
发表评论