C Exercises: Copy a file in another name
11. Copy File to Another Name
Write a program in C to copy a file to another name.
Assume that the content of the file test.txt is : test line 1 test line 2 test line 3 test line 4
Sample Solution:
C Code:
Sample Output:
Copy a file in another name : ---------------------------------- Input the source file name : test.txt Input the new file name : test1.txt The file test.txt copied successfully in the file test1.txt.
Flowchart:

For more Practice: Solve these Related Problems:
- Write a C program to copy a binary file to a new file and verify the copy by comparing file sizes.
- Write a C program to copy a file and replace every instance of a specific word during the copy.
- Write a C program to implement a file copy function that reports the progress of the copying process.
- Write a C program to copy a file and create a backup file with a timestamp appended to the name.
C Programming Code Editor:
Previous: Write a program in C to append multiple lines at the end of a text file.
Next: Write a program in C to merge two files and write it in a new file.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.