文件输入输出求助
#include<iostream>
#include <fstream>
using namespace std;
int main(){
char id[6];
char na;
char sex;
char zj[20];
char count[50];
cout<<" 请输入读者的ID";
cin>>id;
ofstream out("read.txt",ios::app);
out<<id;
out.close ();
ifstream in("read.txt");
in.read((char*)&count,sizeof (count));
cout<<count;
return 0;
}
这是我正在进行中的程序,in.read((char*)&count,sizeof (count));这条语句什么意思不是很明白,请大家帮帮忙!!还有为什么输出的结果中间会有很多的“烫”?
#include <fstream>
using namespace std;
int main(){
char id[6];
char na;
char sex;
char zj[20];
char count[50];
cout<<" 请输入读者的ID";
cin>>id;
ofstream out("read.txt",ios::app);
out<<id;
out.close ();
ifstream in("read.txt");
in.read((char*)&count,sizeof (count));
cout<<count;
return 0;
}
这是我正在进行中的程序,in.read((char*)&count,sizeof (count));这条语句什么意思不是很明白,请大家帮帮忙!!还有为什么输出的结果中间会有很多的“烫”?
[此贴子已经被作者于2006-6-19 22:48:09编辑过]