Write your question here.
Is it possible to store into a text file without overwriting the existing information?
ofstream outf;
int x;
int main ()
{
outf.open (''.......'');
cout <<''Enter Desire Digit''<<endl;
cin >>x;
outf <<x<<endl;
return 0;
}
Last edited on
Thanks guys, the 'app' worked but 'ate' didnt