Skip to content

Instantly share code, notes, and snippets.

@christiancost47
Created December 2, 2019 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiancost47/2797a76c494c24ccc72cdce4e67826f4 to your computer and use it in GitHub Desktop.
Save christiancost47/2797a76c494c24ccc72cdce4e67826f4 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
int main()
{
char ch, source_file[20], target_file[20];
FILE *source, *target;
printf("NOME DO ARQUIVO A SER COPIADO\n");
gets(source_file);
source = fopen(source_file, "r");
if (source == NULL)
{
printf("Press any key to exit...\n");
exit(EXIT_FAILURE);
}
printf("NOME DA CÒPIA\n");
gets(target_file);
target = fopen(target_file, "w");
if (target == NULL)
{
fclose(source);
printf("Press any key to exit...\n");
exit(EXIT_FAILURE);
}
while ((ch = fgetc(source)) != EOF)
fputc(ch, target);
printf("ARQUIVO COPIADO\n");
fclose(source);
fclose(target);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment