By the way, using i/ofstream requires you to put
#include
with the rest of your include statements.
On Thu, Apr 8, 2010 at 3:21 PM, Damon Doucet wrote:
> You could also learn how to do file handling in your own programming
> language. (There are many tutorials online)
>
> For e
You could also learn how to do file handling in your own programming
language. (There are many tutorials online)
For example, in C++ you could do
ifstream input("test.in");
then instead of using cin >> value, you would do input >> value.
Likewise, for output:
ifstream output("test.out");
outpu