#include #include #include using namespace std; //myofstream_constructs1.cpp //Output File Stream Constructors void readfile8(); int main() { char* ch1; ofstream myFile8;// on the Stack myFile8.open( "data8.txt" ); // insertion operators << myFile8<<" Adding text to data8 file."; myFile8.close(); readfile8(); return 0; } // ifstream is an input stream void readfile8() { cout<<"\n reading file "<