[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ÿ です。