In C, I’m using fseek to go back to a position in the file. When I then write to the file with fprintf, it overwrites the characters at that location. Is there a way to make fprintf/another function insert, instead of overwrite?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The short answer is “no”. If you need to insert, you really need to rewrite the entire file after the insertion.