hi i can copy text based files to other files but when it comes to images i cant copy them it gives me a distorted image.
printf("please give your archive a name:\n");
scanf("%s", &archive_name);
create_pointer = fopen( archive_name, "wb");
printf("please type in the path for the file you want to archive\n");
scanf("%s", &original_file);
open_pointer = fopen( original_file, "rb");
original_pointer=fopen(original_file,"rb");
copy_pointer = fopen( archive_name,"wb")