C++

Objectives :

  • myifstream_get1.cpp
    ifstream readtext2;
    readtext2.open("empdata5.txt");
    while(readtext2.good())
    {
    if(readtext2.good())
    {  ch2 = readtext2.get();  cout<< ch2; }
    }
  • Code: myifstream_get1.txt
  • This documents differs from myfstream_binaries1.htm, this application writes and reads text files from a text file than a binary data.

 

 

Step: 1 Create a source file.

FYI: there was no empdata5.txt, in the current working folder

Step: 2 Edit and save Source file

Step: 3 Runtime Views:

 

Step: