From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/CPLUSPLUS/EXAMPLES/io2.cc | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 reference/CPLUSPLUS/EXAMPLES/io2.cc (limited to 'reference/CPLUSPLUS/EXAMPLES/io2.cc') diff --git a/reference/CPLUSPLUS/EXAMPLES/io2.cc b/reference/CPLUSPLUS/EXAMPLES/io2.cc new file mode 100644 index 0000000..53484a7 --- /dev/null +++ b/reference/CPLUSPLUS/EXAMPLES/io2.cc @@ -0,0 +1,27 @@ +/************************************************************************ + * + * Purpose: + * Author: M J Leslie + * Date: 26-Oct-98 + * + ************************************************************************/ + + +#include // ifstream, ofstream, fstream +#include // cin, cout + +main() +{ + char buf[255]; + char File[]="tempfile"; + + cout << "Please enter a string => "; // O/P to STDOUT (screen). + cin >> buf; // Read from STDIN (keyboard). + + cout << " Writing string to " << File << "\n"; + + ofstream fp(File); // Open file for O/P + fp << buf << "\n"; // Write to the file. + + // ... File is closed at program end. +} -- cgit v1.2.3-54-g00ecf