Hey, how do I delete a particular line in a file? I was thinking of traversing through and by using a while loop and feof(). How do I completely remove the a particular line?
thanks a bijillion,
j o n
you can do this by read the entire content of the file in an string/array and then re-write the whole file expect the one line you want to delete
is that the only way to do it?