How would I remove a specific line from a file in C++?
Please assume that reading the entire file into memory, modifying and writing back out is not an option, because the file is too big to fit into memory. Is there a way to do this 'in place'? Or is changing the size of the file not possible?