17 lines
330 B
C++
17 lines
330 B
C++
#include <fstream.h>
|
|
|
|
void main( void ) {
|
|
|
|
char s[20];
|
|
|
|
ofstream output;
|
|
output.open( "temp.txt" );
|
|
output << "Hello, my world." << endl;
|
|
|
|
ifstream input ( "temp.txt" );
|
|
cout << "The content of \"temp.txt\" :" << endl;
|
|
while( (input >> s).good() ) {
|
|
cout << s << " " << flush;
|
|
}
|
|
}
|