Page 1 of 1

Write C Program to delete a specific line from a text file (line number is given). You must write a function void del_li

Posted: Fri May 20, 2022 10:58 am
by answerhappygod
Write C Program to delete a specific line from a text file (line
number is given).
You must write a function
void del_line(const char *dest_file, const char *source_file,
int line_num );
where the source file (initialFile.txt) and the destination file
(finalFile.txt) are passed from the main function. Hint: in main()
they are declared as strings.
Use fgets(), fputs() functions; read a line of the source fine
in a string with 80 char.