InterviewSolution
Saved Bookmarks
| 1. |
Write a program on one file to another file |
|
Answer» ong>Answer: nclude #include main() { CHAR ch, source_file[20], target_file[20]; FILE *source, *target; PRINTF("Enter name of file to copy\n"); gets(source_file); |
|