/* How to use our Gnu 2.9 libraries to read and write named files*/ #include #include int main ( int argc, char* argv[] ) { /*first write a line into a named file*/ ofstream output; output.open("Hello.txt"); /* the name of the file is Hello.txt*/ output << "Hello, World!" <