program is to read the contents of a filevoid


Program is to read the contents of a file:

void main()

   {

  ifstream fin("ascii.txt");

  char ch;

  while(! fin.eof())

    {

  fin>>ch;

  cout<

    }

  fin.close();

  }

 

 

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: program is to read the contents of a filevoid
Reference No:- TGS0174911

Expected delivery within 24 Hours