Question: 30 Points Write a C program named mycopy.c that mimics the operation of the cp command you just used. The program takes two file names
30 Points Write a C program named mycopy.c that mimics the operation of the cp command you just used. The program takes two file names as command-line arguments and copies the first file content to the second file. The steps are as follows: (1) open two files, (ii) read characters from the first file and write them to the second file until an EOF (end of file) is hit, (ii) when done, print how many characters are written and close both files. (iv) handle error cases as appropriate (e.g., the correct number of arguments passed input file exists, etc). You can use fgetc and fputc functions to read a character from a file and write a character to a file, respectively. A quick reminder on the file operations can be checked here: https://www.geeksforgeeks.org/fgetc-fputo-c/
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
