Coders' Corner Search:
General :: Programming
This category is about general programming issues. Documents dealing with issues specific to a certain programming language or development environment are in the categories below.

Articles:


Featured Article

Can I delete some data from a file without rewriting the whole thing?

Not really. You can fseek() to the point in the file where you want to start deleting, but then you have to rewrite all the data from then on. There is no way to just yank stuff out of a file.