我想将一个常量字符串写入一个文本文件。我知道可以使用 put-to 来完成,但我想在通过,等operator(<<)
输入的数据块中写入该常量字符串。我的学校项目需要它。请善待并帮助我。如果你不清楚这个问题,请告诉我。cin
gets
cout<<"Enter your name";
gets(name);
cout<<"Enter your roll number";
cin>>rollno;
char string[]="Student of XYZ School";
fout.write((char*)&student,size(student));
请注意,char 字符串不能与输入的其他数据一起写入,但我希望它只与其他数据一起写入文件中。