c program to copy the contents of a filevoid


C Program to copy the contents of a file:

void main()

   {

  ifstream fin("input.txt");

  ofstream fout("output.txt");

  char ch;

  while (fin)

      {

    fin>>ch;

    fout<

      }

    fin.close();

    fout.close();

   }

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: c program to copy the contents of a filevoid
Reference No:- TGS0174908

Expected delivery within 24 Hours