Write a c++ program that copy contents of one file to another file
Answers
Answered by
0
Answer: Given source and destination text files. Append the content from source file to destination file and then display the content of destination file.
For example :
Input : file.text : "how you doin' " , file2.text : "hello"
Output : file2.text : "hello how are you doin' "
Similar questions