I want to use the following program for replacing the first character
in the file name with "w" its not working please help......
#include<iostream.h>
#include<fstream.h>
#include<conio.h>
main()
{
clrscr();
ofstream outf;
outf.open("D:\\cat\\normal.txt",ios::ate|ios::in|ios::out);
outf<<"w"<<endl;
outf.close();
getch();
}- [c-prog] Editing a word in text file in C++ crystalcat_75
- Re: [c-prog] Editing a word in text file in C++ Mickey Mathieson
