First page Back Continue Last page Graphics

EXAMPLE

  • int main( )
  • {
  • ifstream infile("in");
  • ofstream outfile("out");
  • string s;
  • while (getline(infile, s))
  • outfile << s << endl;
  • return 0;
  • }