Here is the sample code from this site in the tutorial....
Where does the "this" text come from, that forms in the program window?Code:#include <fstream> #include <iostream> using namespace std; int main() { char str[10]; //Creates an instance of ofstream, and opens example.txt ofstream a_file ( "example.txt" ); // Outputs to example.txt through a_file a_file<<"This text will now be inside of example.txt"; // Close the file stream explicitly a_file.close(); //Opens for reading the file ifstream b_file ( "example.txt" ); //Reads one string from the file b_file>> str; //Should output 'this' cout<< str <<"\n"; cin.get(); // wait for a keypress // b_file is closed implicitly here }
May be a stupid question but I have read this code over and over and cant seem to find where it originates from....
Thanks...
-Fabrik8



LinkBack URL
About LinkBacks


