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.
Write C Program to delete a specific line from a text file (line number is given). You must write a function void del_li
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am