For example if i want to use extraction operator on two object to send the same data tto two object for syntax shortcut
(out_file, cout) << "\n\nTotal tokens found: " << statistics[0] << "\n\nAlphaNumeric Tokens: " << statistics[1]
<< "\n\nPunctuation character found: " << statistics[2] << "\nNumber of whitespace: " << statistics[3]
<< "\nNumber of newlines: " << statistics[4] << "\n\nTokens are stored in out file\n\nPress Enter to exit....";
So then the data is applied to out_file and cout at same time? out_file is fstream..