很奇怪 你要输出字符串 不是有人回答了 而且很对啊 难道要一个一个字符?
那就
#include
#include
#include
using namespace std;
int main()
{
FILE *fp;
fp=fopen("eabc.txt","r");
int k=0;
char ss[200];
for(int i=0;;i++)
{
if(feof(fp)) //字符串结尾 跳出循环
break;
else
{
ss[i]=fgetc(fp);
k++; //K个字符
}
}
for(i=0;i
cout<
return 0;
}
#include
#include
#include
using namespace std;
int main()
{
ifstream file("e:abc.txt");
string str;
file >> str;
cout << str << endl;
return 0;
}
这里好像用到了数据结构吧?具体我也记不清楚了