[请不要评论使用 Turbo C++。我知道它已经过时了,但我们只接受这种方式。] 有点类似的错误在这里为什么我在解析器提取的每个包含之后都会得到一个 'ÿ' 字符?- C,但我无法将它与我的代码联系起来 - 我是新手。
#include<fstream.h>
#include<conio.h>
void main()
{
clrscr();
char ch;
ifstream read_file;
read_file.open("Employee.txt");
ofstream write_file;
write_file.open("Another.txt");
while(!read_file.eof())
{
/*Also when I use, write<<read_file.get(ch) in this block instead of the two statements below, it writes some kind of address in the file. Please tell me about that too why it happens. */
read_file.get(ch);
write_file<<ch;
}
read_file.close();
write_file.close();
getch();
}
我面临的问题是它在“另一个”文件的末尾附加了ÿ字符。
例如:“Employee”中的文本是,ID:1 Name:abc 然后它复制到“another”的文本是:ID:1 Name:abcÿ