my friend is writing a folder lock software. for that he has to rename the names of some folders stored in 1 single text file.
for that purpose we used r+ but,
we saw that whatever we overwrite, its get updated in watch of dev compiler,but not in actual file.
if turbo c compiler it is not got updated in watch too....
// fp opened in r+ mode
do
{
if(i<2) // if it is not a 3ed line
fscanf(fp,"%s",s[i]); // go to the next line by scanning the contents of present line
else if(i==2) // if 3ed line
{
fprintf(fp,"%s","REPLACE\n"); //overwritting the context of present line
getch();
fclose(fp); //problem: /* the file is successfully closed but the content remains the same*/
return 0;
}
THIS CODE WORKS WELL IN DEV BUT THE CHANGES IN NOT REFLECTING IN THE ORIGINAL FILE