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

link|improve this question
1  
why not open it in w+? – BlackBear Feb 7 '11 at 19:21
Have you considered using a more sane and up to date development environment? Both TurboC and Dev-C++ are horribly out of date(I think it's over a decade for both now) – Earlz Feb 7 '11 at 19:25
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.