hi
I want to write a programme (in C) that writes students information in a file and then the user says a student number & i have to remove all about that student in the file
how can i do that?!
(erasing somethin special in a file)
The simplest (and possibly the only way) is to read the whole file in buffer, remove the stuff you don't need from the buffer, empty the file and write the buffer in the file.