I am a beginner to C++ (doing file handling currently), I am facing a difficulty as my previous runs values are overwritten. I am looking for a remedy to this.
i want to save at least five inputs that may be added to my program ..... for eg name .. i ask for names.. and then store it
.....
ofstream f("f.txt");
cin>>name
f<<name;
....
what happens after each run is that the name entered in previous run gets overwritten ... is there ay way to prevent this?