void copier()
{
ifstream fout("LUDODESGIN.txt");
ofstream fin("Temp.txt");
char ch;
while (fout.get(ch))
{
cout<<ch;
fin<<printf("%c",ch);
}
fout.close();
fin.close();
}
i am not getting any output for the
cout<<ch;
also .
I need this to do my school project. Please help

New Topic/Question
Reply




MultiQuote












|