Hi all,
I have a simple file I/O query. I have opened a new file for writing, I write it to some point then decide to go back to a particular point and write there again.
What I am doing is that I am storing the position I want to write at later, in a variable using fseek function. But later when I try to write at that position the text there is overwritten rather than getting inserted. so the problem is how to insert the text using C.

Thanks a lot