hello.
i am working on the i/p file which will have object name=value.have any no of i/ps given by user.
the value has to be updated each time a new value is entered in CLI.
can i overwrite the value with some greater size value?????????????
without using the tepmfile??i understand the txt in file are continous streams of bytes in memory.
actaully i can overite but the next line is deleted if i use some graeter size value.
my code:
FSEEK(fp,pos,SEEK_SET);
fprint(buffer,"%s=%d",objct,value);
fputs(buffer,fp);
thanks..