How is it possible to delete a byte ( char, int, double .. ) from a text file ?
Suppose that the file.txt contains :"110Hello". And I want to delete "110" from the file leaving only the "Hello" part.
How to do this without reading the whole file into the memory and then rewriting the edited data ?
Thanks.