I\'m trying to append the contents of a file myfile.txt to the end of a second file myfile2.txt in c. I can copy the contents, but I can\'t find a way to append. Here\'s my
Open with append:
pFile2 = fopen("myfile2.txt", "a");
then just write to pFile2, no need to fseek().
pFile2
fseek()