Question: In C, write the code for the implementation of cp that makes a copy of a file. The file source name is supplied as an
In C, write the code for the implementation of cp that makes a copy of a file. The file source name is supplied as an argument using the following syntax: cp src_file
As a result, the contents of src_file will be copied into a new file with the name X_copy_made_by_Y, where X is the name of src_file and Y is the name of cp executable. You are only allowed to use read(), write(), open(), creat() and close() to manipulate the files. Your code should check for reasonable errors and provide corresponding error messages.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
