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

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

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

Post 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.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply