#include #include #include using namespace std; //myofstream_constructs2.cpp //Output File Stream Constructors void readfile9(char[] ); int main() { char ch1[]= "data9.txt"; ofstream myFile9;// on the Stack myFile9.open(ch1); // insertion operators << myFile9<<" Adding text to data9 file."; myFile9.close(); readfile9(ch1); return 0; } // ifstream is an input stream void readfile9(char ch3[]) { cout<<"\n reading file "<